summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-05-17 19:30:52 +0200
committermathieui <mathieui@mathieui.net>2013-05-17 19:30:52 +0200
commit02559680491b467b8491dcee708a994304d2b9e4 (patch)
treee69cef6248c859ddd6d47d225d650bd4e0269702 /src
parent69af684494566afa31b47f25bd4c71fe12bcdc30 (diff)
downloadpoezio-02559680491b467b8491dcee708a994304d2b9e4.tar.gz
poezio-02559680491b467b8491dcee708a994304d2b9e4.tar.bz2
poezio-02559680491b467b8491dcee708a994304d2b9e4.tar.xz
poezio-02559680491b467b8491dcee708a994304d2b9e4.zip
Fix a tb on "/ban "
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 8501f348..d2ed1894 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -1161,7 +1161,7 @@ class MucTab(ChatTab):
self.core.room_error(iq, self.get_name())
args = common.shell_split(arg)
if not args:
- self.core.command_help('ban')
+ return self.core.command_help('ban')
if len(args) > 1:
msg = args[1]
else: