Fix a tb in save_local()
This commit is contained in:
parent
5f74d22ca5
commit
ea0f191555
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue