bug fix in first_found search path assembly

parent 39f84b7f
......@@ -152,7 +152,7 @@ class LookupModule(object):
else:
for path in pathlist:
for fn in filelist:
os.path.join(path, fn)
f = os.path.join(path, fn)
total_search.append(f)
else:
total_search = [term]
......
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