Actually fix that bookmarks typo bug

This commit is contained in:
mathieui 2014-04-08 21:06:21 +02:00
parent fe072a847b
commit 7803103891

View file

@ -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