diff options
author | mathieui <mathieui@mathieui.net> | 2013-06-16 14:47:14 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-06-16 14:47:14 +0200 |
commit | 356d8a218445fc9037e69c6e6b6156f49e839b1c (patch) | |
tree | 369d618f9829d6e1744f519d71a1c3d723ccbac6 | |
parent | 2b7676194f174ebb5019d0be1c83c2827af545c9 (diff) | |
download | poezio-356d8a218445fc9037e69c6e6b6156f49e839b1c.tar.gz poezio-356d8a218445fc9037e69c6e6b6156f49e839b1c.tar.bz2 poezio-356d8a218445fc9037e69c6e6b6156f49e839b1c.tar.xz poezio-356d8a218445fc9037e69c6e6b6156f49e839b1c.zip |
Fix a tb with the tell plugin on wrong input
it didn’t make anything crash, but still.
-rw-r--r-- | plugins/tell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tell.py b/plugins/tell.py index c8437608..96b5bb1e 100644 --- a/plugins/tell.py +++ b/plugins/tell.py @@ -59,7 +59,7 @@ class Plugin(BasePlugin): """/tell <nick> <message>""" arg = common.shell_split(args) if len(arg) != 2: - self.command_help('tell') + self.core.command_help('tell') return nick, msg = arg tab = self.api.current_tab() |