1
0
mirror of https://github.com/cheat/cheat.git synced 2025-07-18 19:51:46 +02:00

Update sheets.py

Added a missing .lower() to the line
This commit is contained in:
tculp
2018-10-15 12:21:52 -04:00
committed by GitHub
parent 4b6dc22c0a
commit cebe3de389

@ -84,7 +84,7 @@ def search(term):
for cheatsheet in sorted(get().items()):
match = ''
for line in open(cheatsheet[1]):
if lowered_term in line:
if lowered_term in line.lower():
match += ' ' + line
if match != '':