Remove unnecessary exception from nxos_command (#3521)

reviewable/pr18780/r1
Nathaniel Case 10 years ago
parent 426e9a357d
commit b466f7bbe2

@ -157,12 +157,8 @@ def main():
kwargs['command_type'] = 'cli_show'
while retries > 0:
try:
response = module.execute(commands, **kwargs)
result['stdout'] = response
except ShellError, exc:
module.fail_json(msg='failed to run commands', exc=exc.message,
command=exc.command)
response = module.execute(commands, **kwargs)
result['stdout'] = response
for index, cmd in enumerate(commands):
if cmd.endswith('json'):

Loading…
Cancel
Save