diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-08 21:06:21 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-09 00:26:47 +0200 |
commit | 78031038912f5c228e75d1d0fe5efba557542721 (patch) | |
tree | 02f5438dc3b457f40bef5bf10384a3df160bf39a | |
parent | fe072a847b9963ac2ca8516b1dc8e2624548a850 (diff) | |
download | poezio-78031038912f5c228e75d1d0fe5efba557542721.tar.gz poezio-78031038912f5c228e75d1d0fe5efba557542721.tar.bz2 poezio-78031038912f5c228e75d1d0fe5efba557542721.tar.xz poezio-78031038912f5c228e75d1d0fe5efba557542721.zip |
Actually fix that bookmarks typo bug
-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 65d633ce..aa710d24 100644 --- a/src/bookmark.py +++ b/src/bookmark.py @@ -117,7 +117,7 @@ def remove(value): def stanza_storage(method): """Generate a <storage/> stanza with the conference elements.""" storage = Bookmarks() - for b in (b for b in bookmark if b.method == method): + for b in (b for b in bookmarks if b.method == method): storage.append(b.stanza()) return storage |