Merge pull request #2903 from sergevanginderachter/first_found
bug fix in first_found search path assemblypull/4420/head
commit
332a643246
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue