Fix a tb in save_local()

This commit is contained in:
mathieui 2011-11-27 12:59:06 +01:00
parent 5f74d22ca5
commit ea0f191555

View file

@ -132,7 +132,7 @@ def save_local():
for bookmark in filter(lambda b: b.method == "local", bookmarks): for bookmark in filter(lambda b: b.method == "local", bookmarks):
st = bookmark.jid st = bookmark.jid
if bookmark.nick: if bookmark.nick:
st += '/' + nick st += '/' + bookmark.nick
st += ':' st += ':'
all += st all += st
config.set_and_save('rooms', all) config.set_and_save('rooms', all)