Commit ca786575 by Richard Isaacson

Merge pull request #6166 from risaacson/rename_flatten_in_dict

Rename flatten function.
parents 0cca4a39 af616fe1
......@@ -19,7 +19,7 @@ from ansible.utils import safe_eval
import ansible.utils as utils
import ansible.errors as errors
def flatten(terms):
def flatten_hash_to_list(terms):
ret = []
for key in terms:
ret.append({'key': key, 'value': terms[key]})
......@@ -36,4 +36,4 @@ class LookupModule(object):
if not isinstance(terms, dict):
raise errors.AnsibleError("with_dict expects a dict")
return flatten(terms)
return flatten_hash_to_list(terms)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment