fixes issue with converting commands to an iterable was not being done

This fix will now force the commands arg in __call__ to be a list of
objects which otherwise would cause netcli not process the stack
pull/17320/head
Peter Sprygada 8 years ago
parent 1c33b5a9f0
commit 1f9253c032

@ -65,7 +65,7 @@ class Cli(object):
def __call__(self, commands, output=None):
objects = list()
for cmd in commands:
for cmd in to_list(commands):
objects.append(self.to_command(cmd, output))
return self.connection.run_commands(objects)

Loading…
Cancel
Save