mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-04 15:40:20 -07:00
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
|
# strip out any keys that have two leading and two trailing
|
||||||
# underscore characters
|
# underscore characters
|
||||||
for key in result.keys():
|
for key in list(result.keys()):
|
||||||
if PRIVATE_KEYS_RE.match(key):
|
if PRIVATE_KEYS_RE.match(key):
|
||||||
del result[key]
|
del result[key]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue