Typo in words.py: 'strippped_word' -> 'stripped_word'

This commit is contained in:
jesopo 2019-01-04 12:36:38 +00:00
parent 8171c5c492
commit 38b7a1dadf

View file

@ -26,7 +26,7 @@ class Module(ModuleManager.BaseModule):
found = None found = None
if word.lower() in tracked_words: if word.lower() in tracked_words:
found = word.lower() found = word.lower()
elif strippped_word.lower() in tracked_words: elif stripped_word.lower() in tracked_words:
found = stripped_word.lower() found = stripped_word.lower()
if found: if found: