summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-10-03 22:46:21 +0200
committermathieui <mathieui@mathieui.net>2014-10-03 22:46:21 +0200
commitdc4f9cc35a180aff708c9693f6cef8ab992d0fa5 (patch)
tree327846440d93662c046539906edc793ef41d4c54
parent2400b2c5d96732b3dbffd74647bc7e14ffc27abc (diff)
downloadpoezio-dc4f9cc35a180aff708c9693f6cef8ab992d0fa5.tar.gz
poezio-dc4f9cc35a180aff708c9693f6cef8ab992d0fa5.tar.bz2
poezio-dc4f9cc35a180aff708c9693f6cef8ab992d0fa5.tar.xz
poezio-dc4f9cc35a180aff708c9693f6cef8ab992d0fa5.zip
Fix #2692 (ad-hoc mistakes show /help list)
-rw-r--r--src/core/commands.py2
1 files changed, 1 insertions, 1 deletions
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: