bug fix in first_found search path assembly

pull/4420/head
Serge van Ginderachter 2013-05-13 13:48:56 +02:00
parent 39f84b7f4d
commit 7eeab168bc
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class LookupModule(object):
else: else:
for path in pathlist: for path in pathlist:
for fn in filelist: for fn in filelist:
os.path.join(path, fn) f = os.path.join(path, fn)
total_search.append(f) total_search.append(f)
else: else:
total_search = [term] total_search = [term]