diff options
author | mathieui <mathieui@mathieui.net> | 2015-06-06 16:49:39 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-06-06 16:49:39 +0200 |
commit | 3077ec2bc1bddcdcc36f03cca4244dbb0faff90a (patch) | |
tree | c3759d22a2cf785081e4cef32ac4f5f71ae9fee6 /src/tabs | |
parent | 028e22b480acdfbf1de9950ca7062abe6b415f89 (diff) | |
download | poezio-3077ec2bc1bddcdcc36f03cca4244dbb0faff90a.tar.gz poezio-3077ec2bc1bddcdcc36f03cca4244dbb0faff90a.tar.bz2 poezio-3077ec2bc1bddcdcc36f03cca4244dbb0faff90a.tar.xz poezio-3077ec2bc1bddcdcc36f03cca4244dbb0faff90a.zip |
Fix /list when no server is provided
(thanks eijebong)
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muclisttab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/muclisttab.py b/src/tabs/muclisttab.py index c26fb268..92d55190 100644 --- a/src/tabs/muclisttab.py +++ b/src/tabs/muclisttab.py @@ -20,7 +20,7 @@ class MucListTab(ListTab): plugin_keys = {} def __init__(self, server): - ListTab.__init__(self, server.full, + ListTab.__init__(self, server, "ājā: join room.", 'Chatroom list on server %s (Loading)' % server, (('node-part', 0), ('name', 2), ('users', 3))) |