brought back terms testing as with_ is not only way to call and we cannot guarantee terms is a list otherwise.

This commit is contained in:
Brian Coca 2015-06-11 13:43:47 -04:00
parent 091caf6279
commit aaab69cae9

View file

@ -27,6 +27,9 @@ class LookupModule(LookupBase):
def run(self, terms, variables=None, **kwargs):
if not isinstance(terms, list):
terms = [ terms ]
ret = []
for term in terms:
basedir_path = self._loader.path_dwim(term)