diff options
author | mathieui <mathieui@mathieui.net> | 2013-03-08 16:55:27 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-03-08 16:55:27 +0100 |
commit | 0a2bd90c6d021465cae037a4102e64bdc39e3238 (patch) | |
tree | 23e3afc042527b13aabf1afee0104d182d1f2e56 /src | |
parent | d6a2b10995f40f1807cb4c6fec83a0bf49b41465 (diff) | |
download | poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.gz poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.bz2 poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.tar.xz poezio-0a2bd90c6d021465cae037a4102e64bdc39e3238.zip |
Fix PluginAPI.run_command()
Diffstat (limited to 'src')
-rw-r--r-- | src/plugin.py | 2 |
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, _): """ |