diff options
author | mathieui <mathieui@mathieui.net> | 2012-03-30 15:57:43 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-03-30 15:57:43 +0200 |
commit | 372b032380ff3703f1458fd965f5a8431c53f7bc (patch) | |
tree | c25792a8c3e05c08def5f477ad111e048c482c00 /src/bookmark.py | |
parent | 12e6de0cdcf5f3cda318283c7c20402b9615824d (diff) | |
download | poezio-372b032380ff3703f1458fd965f5a8431c53f7bc.tar.gz poezio-372b032380ff3703f1458fd965f5a8431c53f7bc.tar.bz2 poezio-372b032380ff3703f1458fd965f5a8431c53f7bc.tar.xz poezio-372b032380ff3703f1458fd965f5a8431c53f7bc.zip |
Should fix the refresh issue
Diffstat (limited to 'src/bookmark.py')
-rw-r--r-- | src/bookmark.py | 2 |
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): |