Commit 9f90f0e8 by Kahlil (Kal) Hodgson

fix arguments to isinstance() in env lookup

parent fcc2a753
......@@ -27,7 +27,7 @@ class LookupModule(object):
terms = utils.listify_lookup_plugin_terms(terms, self.basedir, inject)
if isinstance(basestring, terms):
if isinstance(terms, basestring):
terms = [ terms ]
ret = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment