Fix lookup into search paths when undefined.

A fileglob may issue a warning `Unable to find xxxx in expected paths` when `ansible_search_path` is not defined, because it loops over the characters in the string instead of looping over a list of one element.
This commit is contained in:
Eduardo Suarez-Santana 2017-08-09 15:43:00 +01:00 committed by Brian Coca
parent 9e3ae8a0cb
commit 9339b0f4a7

View file

@ -111,7 +111,7 @@ class LookupBase(with_metaclass(ABCMeta, object)):
if 'ansible_search_path' in myvars:
paths = myvars['ansible_search_path']
else:
paths = self.get_basedir(myvars)
paths = [self.get_basedir(myvars)]
result = None
try: