issue:38321 fix onyx_config module failed while using python = 3.5 (#38343)
This commit is contained in:
parent
cd280859dd
commit
0d79268a6d
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class ActionModule(_ActionModule):
|
|||
|
||||
# strip out any keys that have two leading and two trailing
|
||||
# underscore characters
|
||||
for key in result.keys():
|
||||
for key in list(result.keys()):
|
||||
if PRIVATE_KEYS_RE.match(key):
|
||||
del result[key]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue