From 1a8b4eaebefbdf0ecd25b628125b4e772693a8ca Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Thu, 26 Feb 2015 03:16:42 +0100 Subject: The /list command should list rooms on the given fulljid, not just the bare jid --- src/core/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/commands.py b/src/core/commands.py index 916f078a..962a13e8 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -267,7 +267,7 @@ def command_list(self, args): if args is None: return self.command_help('list') elif args: - server = safeJID(args[0]).server + server = safeJID(args[0]) else: if not isinstance(self.current_tab(), tabs.MucTab): return self.information('Please provide a server', 'Error') -- cgit v1.2.3