add interactive field to commander so command -h will work

This commit is contained in:
Nick Lanham 2011-02-24 13:24:45 +01:00
parent 510c81776f
commit 1cce30393b

View File

@ -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))