Skip to content

Commit

Permalink
Fixes #221, converts input to lower.
Browse files Browse the repository at this point in the history
  • Loading branch information
3c7 committed Apr 5, 2018
1 parent c5100de commit fcf7df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/MISPWarningLists/mispwarninglists.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def run(self):
if self.data_type not in list.get('dataTypes'):
continue

if self.data in list.get('values', []):
if self.data.lower() in list.get('values', []):
results.append({
"name": list.get('name')
})
Expand Down

0 comments on commit fcf7df1

Please sign in to comment.