Merge pull request #4031 from stianvi/devel

Fixed delete statement for juniper_config.py #4007 #3984
reviewable/pr18780/r1
Peter Sprygada 9 years ago committed by GitHub
commit 530ee87bd3

@ -132,8 +132,8 @@ def diff_config(candidate, config):
elif action == 'delete':
for cfg in config:
if cfg.startswith(cfgline):
updates.add(cfgline)
if cfg[4:].startswith(cfgline):
updates.add(line)
return list(updates)

Loading…
Cancel
Save