Commit 88eb5516 by C. Morgan Hamill

Fix 'sequence' plugin error.

If 'terms' is a string, replace it with a single item list.
parent 40b78f96
......@@ -173,7 +173,10 @@ class LookupModule(object):
def run(self, terms, inject=None, **kwargs):
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:
try:
......
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