Rename flatten funciton.

flatten(x) is used a lot in the various lookup plugins where in each it is slightly different. This is to make this name slightly more unique.
pull/6166/head
Richard C Isaacson 11 years ago
parent 0cca4a3919
commit af616fe15e

@ -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)

Loading…
Cancel
Save