diff options
author | mathieui <mathieui@mathieui.net> | 2013-05-17 19:30:52 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-05-17 19:30:52 +0200 |
commit | 02559680491b467b8491dcee708a994304d2b9e4 (patch) | |
tree | e69cef6248c859ddd6d47d225d650bd4e0269702 | |
parent | 69af684494566afa31b47f25bd4c71fe12bcdc30 (diff) | |
download | poezio-02559680491b467b8491dcee708a994304d2b9e4.tar.gz poezio-02559680491b467b8491dcee708a994304d2b9e4.tar.bz2 poezio-02559680491b467b8491dcee708a994304d2b9e4.tar.xz poezio-02559680491b467b8491dcee708a994304d2b9e4.zip |
Fix a tb on "/ban "
-rw-r--r-- | src/tabs.py | 2 |
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: |