fix bug that would cause stack trace in nxos_nxapi (#21861)

The parse_sandbox function will generate a stack trace if the command
is not supported.  This patch will resolve that issue.
This commit is contained in:
Peter Sprygada 2017-02-23 16:59:06 -05:00 committed by GitHub
parent 942ed42eb0
commit 06d0278290

View file

@ -205,7 +205,10 @@ def parse_https(data):
def parse_sandbox(data):
match = re.search('Sandbox:\s+(.+)$', data, re.M)
return {'sandbox': match.group(1) == 'Enabled'}
value = None
if match:
value = match.group(1) == 'Enabled'
return {'sandbox': value}
def map_config_to_obj(module):
out = run_commands(module, ['show nxapi'], check_rc=False)