diff options
author | mathieui <mathieui@mathieui.net> | 2015-01-05 16:52:53 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-01-05 16:52:53 +0100 |
commit | bd1c41472ae9d8b9bb03def8b0486f0a694d1490 (patch) | |
tree | 91e09a97c23f8b88d68c6d65aa5ccd4a2b02cbb7 | |
parent | 70536f4f0bba994f02c8ed607ef5bd896b67d366 (diff) | |
download | poezio-bd1c41472ae9d8b9bb03def8b0486f0a694d1490.tar.gz poezio-bd1c41472ae9d8b9bb03def8b0486f0a694d1490.tar.bz2 poezio-bd1c41472ae9d8b9bb03def8b0486f0a694d1490.tar.xz poezio-bd1c41472ae9d8b9bb03def8b0486f0a694d1490.zip |
Fix a traceback in the OTR plugin
-rw-r--r-- | plugins/otr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/otr.py b/plugins/otr.py index 53a32380..4f6c5a77 100644 --- a/plugins/otr.py +++ b/plugins/otr.py @@ -818,7 +818,7 @@ class Plugin(BasePlugin): """ args = common.shell_split(arg) if not args: - return self.api.core.command_help('otr') + return self.core.command_help('otr') action = args.pop(0) tab = self.api.current_tab() name = tab.name |