summaryrefslogtreecommitdiff
path: root/network/cumulus/cl_bond.py
diff options
context:
space:
mode:
Diffstat (limited to 'network/cumulus/cl_bond.py')
-rw-r--r--network/cumulus/cl_bond.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/network/cumulus/cl_bond.py b/network/cumulus/cl_bond.py
index 52da0bed..cdcf2aaf 100644
--- a/network/cumulus/cl_bond.py
+++ b/network/cumulus/cl_bond.py
@@ -445,7 +445,7 @@ def main():
# checks all lists and removes it, so that functions expecting
# an empty list, get this result. May upstream this fix into
# the AnsibleModule code to have it check for this.
- for k, _param in module.params.iteritems():
+ for k, _param in module.params.items():
if isinstance(_param, list):
module.params[k] = [x for x in _param if x]