diff options
author | mathieui <mathieui@mathieui.net> | 2016-07-22 19:44:25 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-07-22 19:44:25 +0200 |
commit | 89194356ee3b61c6c630d15b8aeb94c91cbacba4 (patch) | |
tree | 7a3a3c34d49413d314ab0a618c6ceb79a5b1a1f9 | |
parent | 0a3738fd66d79fef992293713c4c5b6717887ade (diff) | |
download | poezio-89194356ee3b61c6c630d15b8aeb94c91cbacba4.tar.gz poezio-89194356ee3b61c6c630d15b8aeb94c91cbacba4.tar.bz2 poezio-89194356ee3b61c6c630d15b8aeb94c91cbacba4.tar.xz poezio-89194356ee3b61c6c630d15b8aeb94c91cbacba4.zip |
Fix /list
-rw-r--r-- | poezio/core/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 357768a5..84b60a3e 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -275,7 +275,7 @@ class CommandCore: else: if not isinstance(self.core.current_tab(), tabs.MucTab): return self.core.information('Please provide a server', 'Error') - jid = safeJID(self.core.current_tab().name).server + jid = safeJID(self.core.current_tab().name) list_tab = tabs.MucListTab(self.core, jid) self.core.add_tab(list_tab, True) cb = list_tab.on_muc_list_item_received |