bugfix in nxos shared module for including defaults

This commit is contained in:
Peter Sprygada 2016-01-11 22:41:06 -05:00
parent a758806287
commit 4d3aa72143

View file

@ -180,7 +180,7 @@ class NxosModule(AnsibleModule):
def get_config(self):
cmd = 'show running-config'
if self.params['include_defaults']:
if self.params.get('include_defaults'):
cmd += ' all'
if self.params['transport'] == 'cli':
return self.execute(cmd)[0]