From dc4f9cc35a180aff708c9693f6cef8ab992d0fa5 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 3 Oct 2014 22:46:21 +0200 Subject: Fix #2692 (ad-hoc mistakes show /help list) --- 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 c2e453e9..7c0f56fa 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -943,7 +943,7 @@ def command_xml_tab(self, arg=''): def command_adhoc(self, arg): arg = arg.split() if len(arg) > 1: - return self.command_help('list') + return self.command_help('ad-hoc') elif arg: jid = safeJID(arg[0]).server else: -- cgit v1.2.3