asa_command: set default_output to text (#23979)

This commit is contained in:
Patrick Ogenstad 2017-04-26 15:46:39 +02:00 committed by Nathaniel Case
parent b11219440b
commit 9a0a7f78d7

View file

@ -53,7 +53,9 @@ class Cli(CliBase):
NET_PASSWD_RE = re.compile(r"[\r\n]?password: $", re.I)
def __init__(self, *args, **kwargs):
super(Cli, self).__init__(*args, **kwargs)
self.default_output = 'text'
def connect(self, params, **kwargs):
super(Cli, self).connect(params, kickstart=False, **kwargs)