diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-27 12:59:06 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-27 12:59:06 +0100 |
commit | ea0f191555d509c0f679113b791064269cc064f9 (patch) | |
tree | f46cffea5bc20b2d668f0183173cecbe4acb228c /src/bookmark.py | |
parent | 5f74d22ca5d805a5edfabf7426502107f555110a (diff) | |
download | poezio-ea0f191555d509c0f679113b791064269cc064f9.tar.gz poezio-ea0f191555d509c0f679113b791064269cc064f9.tar.bz2 poezio-ea0f191555d509c0f679113b791064269cc064f9.tar.xz poezio-ea0f191555d509c0f679113b791064269cc064f9.zip |
Fix a tb in save_local()
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 91078550..43df29ab 100644 --- a/src/bookmark.py +++ b/src/bookmark.py @@ -132,7 +132,7 @@ def save_local(): for bookmark in filter(lambda b: b.method == "local", bookmarks): st = bookmark.jid if bookmark.nick: - st += '/' + nick + st += '/' + bookmark.nick st += ':' all += st config.set_and_save('rooms', all) |