diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-06 20:17:01 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-06 20:18:31 +0200 |
commit | 53040305ce97bd532bd27cf0c2f626136f34a572 (patch) | |
tree | df98cc4216854fbd0750e912c92b3d0269cbb2c8 /src/bookmark.py | |
parent | e216fd2112c796bd625730f711861b7361f6fe9f (diff) | |
download | poezio-53040305ce97bd532bd27cf0c2f626136f34a572.tar.gz poezio-53040305ce97bd532bd27cf0c2f626136f34a572.tar.bz2 poezio-53040305ce97bd532bd27cf0c2f626136f34a572.tar.xz poezio-53040305ce97bd532bd27cf0c2f626136f34a572.zip |
fix a wrong naming in the previous commit
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 0fdd1cde..65d633ce 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 bookmark in bookmark if b.method == method): + for b in (b for b in bookmark if b.method == method): storage.append(b.stanza()) return storage |