Fix PluginAPI.run_command()
This commit is contained in:
parent
d6a2b10995
commit
0a2bd90c6d
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ class PluginAPI(object):
|
||||||
|
|
||||||
:param str line: The command to run.
|
: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, _):
|
def all_tabs(self, _):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue