Skip to content
Snippets Groups Projects
Commit 03e6cf71 authored by Bensong Liu's avatar Bensong Liu
Browse files

FR 20201005: summerize-part-list/tool_search_part_user.py is not...

FR 20201005: summerize-part-list/tool_search_part_user.py is not case-sensative to input filename anymore.
parent 7b379c46
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ def main():
try:
s = xlsx_conv.read_as_csv(fname)
s = s.replace(' ', '').replace(',', '')
return s.find(_id) != -1
return s.lower().find(_id.lower()) != -1
except:
# Catch PermissionError etc.
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment