minor bug fix to pass path to difference() in ios_config

The ios_config module needs to pass the path kwarg to difference when
specifying match=exact or strict.
This commit is contained in:
Peter Sprygada 2016-09-08 15:46:39 -04:00 committed by Matt Clay
parent f2c324facc
commit d339004437

View file

@ -291,6 +291,7 @@ def load_config(module, commands, result):
def run(module, result): def run(module, result):
match = module.params['match'] match = module.params['match']
replace = module.params['replace'] replace = module.params['replace']
path = module.params['parents']
candidate = get_candidate(module) candidate = get_candidate(module)