summaryrefslogtreecommitdiff
path: root/plugins/tell.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-06-16 14:47:14 +0200
committermathieui <mathieui@mathieui.net>2013-06-16 14:47:14 +0200
commit356d8a218445fc9037e69c6e6b6156f49e839b1c (patch)
tree369d618f9829d6e1744f519d71a1c3d723ccbac6 /plugins/tell.py
parent2b7676194f174ebb5019d0be1c83c2827af545c9 (diff)
downloadpoezio-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.
Diffstat (limited to 'plugins/tell.py')
-rw-r--r--plugins/tell.py2
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()