1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix 'sequence' plugin error.

If 'terms' is a string, replace it with a single item list.
This commit is contained in:
C. Morgan Hamill 2013-04-17 11:45:28 -04:00
parent 40b78f96de
commit 88eb5516eb

View file

@ -173,7 +173,10 @@ class LookupModule(object):
def run(self, terms, inject=None, **kwargs): def run(self, terms, inject=None, **kwargs):
results = [] results = []
terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject) terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
if isinstance(terms, basestring):
terms = [ terms ]
for term in terms: for term in terms:
try: try: