fix(config): variable name

This commit is contained in:
s3lph 2023-02-07 21:55:36 +01:00
parent 6522997f4d
commit 410f61f5ff
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5

View file

@ -93,7 +93,7 @@ def iter_system(module, tree=None, value=None):
changed = False
# Recursively iterate the options tree
for k, v in value.items():
sublist = tree + [k]
subtree = tree + [k]
if isinstance(v, dict):
changed = changed or iter_system(module, subtree, v)
continue