diff options
author | louiz’ <louiz@louiz.org> | 2016-07-04 14:14:43 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-07-04 14:16:39 +0200 |
commit | 64647e3fe8ece4f4633444623f3770a78941e86f (patch) | |
tree | 8ae42c281f5959829c9d5ace19f79a972c481b51 | |
parent | d039da7b2c9b9fe5f55ab07b8c53a9f9c6343f76 (diff) | |
download | poezio-64647e3fe8ece4f4633444623f3770a78941e86f.tar.gz poezio-64647e3fe8ece4f4633444623f3770a78941e86f.tar.bz2 poezio-64647e3fe8ece4f4633444623f3770a78941e86f.tar.xz poezio-64647e3fe8ece4f4633444623f3770a78941e86f.zip |
Correctly set the MucListTab name to a string and not a JID
Fix a traceback on /w, and many other places, when a MucListTab is open
-rw-r--r-- | poezio/tabs/muclisttab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/tabs/muclisttab.py b/poezio/tabs/muclisttab.py index 5a860b6b..f14f4172 100644 --- a/poezio/tabs/muclisttab.py +++ b/poezio/tabs/muclisttab.py @@ -20,7 +20,7 @@ class MucListTab(ListTab): plugin_keys = {} def __init__(self, core, server): - ListTab.__init__(self, core, server, + ListTab.__init__(self, core, server.full, "“j”: join room.", 'Chatroom list on server %s (Loading)' % server, (('node-part', 0), ('name', 2), ('users', 3))) |