mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
add interactive field to commander so command -h will work
This commit is contained in:
parent
510c81776f
commit
1cce30393b
1 changed files with 2 additions and 1 deletions
|
@ -45,9 +45,10 @@ import logging
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
class Commander:
|
class Commander:
|
||||||
def __init__(self, cmds):
|
def __init__(self, cmds, interactive=False):
|
||||||
self._commands = cmds
|
self._commands = cmds
|
||||||
self.console = component.get("ConsoleUI")
|
self.console = component.get("ConsoleUI")
|
||||||
|
self.interactive = interactive
|
||||||
|
|
||||||
def write(self,line):
|
def write(self,line):
|
||||||
print(strip_colors(line))
|
print(strip_colors(line))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue