check if the term is a dict so we can take a simple list of files (like first_available_file) takes

pull/2260/head
Seth Vidal 12 years ago
parent dfad94078b
commit 804b130288

@ -81,34 +81,36 @@ class LookupModule(object):
def run(self, terms, **kwargs):
result = None
for term in terms:
files = term.get('files', [])
paths = term.get('paths', [])
filelist = files
if isinstance(files, basestring):
files = files.replace(',', ' ')
files = files.replace(';', ' ')
filelist = files.split(' ')
pathlist = paths
if paths:
if isinstance(paths, basestring):
paths = paths.replace(',', ' ')
paths = paths.replace(':', ' ')
paths = paths.replace(';', ' ')
pathlist = paths.split(' ')
total_search = []
if not pathlist:
total_search = filelist
if isinstance(term, dict):
files = term.get('files', [])
paths = term.get('paths', [])
filelist = files
if isinstance(files, basestring):
files = files.replace(',', ' ')
files = files.replace(';', ' ')
filelist = files.split(' ')
pathlist = paths
if paths:
if isinstance(paths, basestring):
paths = paths.replace(',', ' ')
paths = paths.replace(':', ' ')
paths = paths.replace(';', ' ')
pathlist = paths.split(' ')
total_search = []
if not pathlist:
total_search = filelist
else:
for path in pathlist:
for fn in filelist:
f = path + '/' + fn
total_search.append(f)
else:
for path in pathlist:
for fn in filelist:
f = path + '/' + fn
total_search.append(f)
total_search = [term]
result = None
for fn in total_search:

Loading…
Cancel
Save