diff options
Diffstat (limited to 'src/bookmark.py')
-rw-r--r-- | src/bookmark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmark.py b/src/bookmark.py index 52235d23..fa013d1e 100644 --- a/src/bookmark.py +++ b/src/bookmark.py @@ -133,7 +133,7 @@ def save_privatexml(xmpp): def save_remote(xmpp, method=preferred): """Save the remote bookmarks.""" - method = "privatexml" if method != 'pep' else 'pep' + method = 'privatexml' if method != 'pep' else 'pep' try: if method is 'privatexml': @@ -144,7 +144,7 @@ def save_remote(xmpp, method=preferred): method='xep_0223') except: import traceback - log.debug("Could not save the bookmarks:\n%s" % traceback.format_exc()) + log.error("Could not save the bookmarks:\n%s" % traceback.format_exc()) return False return True |