mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
asa_command: set default_output to text (#23979)
This commit is contained in:
parent
b11219440b
commit
9a0a7f78d7
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue