summaryrefslogtreecommitdiff
path: root/src/plugin.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-03-08 16:55:27 +0100
committermathieui <mathieui@mathieui.net>2013-03-08 16:55:27 +0100
commit0a2bd90c6d021465cae037a4102e64bdc39e3238 (patch)
tree23e3afc042527b13aabf1afee0104d182d1f2e56 /src/plugin.py
parentd6a2b10995f40f1807cb4c6fec83a0bf49b41465 (diff)
downloadpoezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.gz
poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.bz2
poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.xz
poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.zip
Fix PluginAPI.run_command()
Diffstat (limited to 'src/plugin.py')
-rw-r--r--src/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.py b/src/plugin.py
index 82b96443..602d0326 100644
--- a/src/plugin.py
+++ b/src/plugin.py
@@ -150,7 +150,7 @@ class PluginAPI(object):
:param str line: The command to run.
"""
- return self.core.current_tab().execute_command(line)
+ return self.core.current_tab().execute_command(*args, **kwargs)
def all_tabs(self, _):
"""