From 372b032380ff3703f1458fd965f5a8431c53f7bc Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 30 Mar 2012 15:57:43 +0200 Subject: Should fix the refresh issue --- src/bookmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bookmark.py') 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): -- cgit v1.2.3