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.
This commit is contained in:
Richard C Isaacson 2014-02-25 14:59:06 -06:00
parent 0cca4a3919
commit af616fe15e

View file

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