summaryrefslogtreecommitdiff
path: root/src/bookmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bookmark.py')
-rw-r--r--src/bookmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmark.py b/src/bookmark.py
index 9f633ba5..38979697 100644
--- a/src/bookmark.py
+++ b/src/bookmark.py
@@ -141,7 +141,7 @@ def save_remote(xmpp, method="privatexml"):
def save_local():
"""Save the local bookmarks."""
- all = ''.join([bookmark.local() for bookmark in bookmarks if bookmark.method is 'local'])
+ all = ''.join(bookmark.local() for bookmark in bookmarks if bookmark.method is 'local')
config.set_and_save('rooms', all)
def save(xmpp, core=None):