fix(config): variable name
This commit is contained in:
parent
6522997f4d
commit
410f61f5ff
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ def iter_system(module, tree=None, value=None):
|
||||||
changed = False
|
changed = False
|
||||||
# Recursively iterate the options tree
|
# Recursively iterate the options tree
|
||||||
for k, v in value.items():
|
for k, v in value.items():
|
||||||
sublist = tree + [k]
|
subtree = tree + [k]
|
||||||
if isinstance(v, dict):
|
if isinstance(v, dict):
|
||||||
changed = changed or iter_system(module, subtree, v)
|
changed = changed or iter_system(module, subtree, v)
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue