Typo in words.py: 'strippped_word' -> 'stripped_word'
This commit is contained in:
parent
8171c5c492
commit
38b7a1dadf
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class Module(ModuleManager.BaseModule):
|
|||
found = None
|
||||
if word.lower() in tracked_words:
|
||||
found = word.lower()
|
||||
elif strippped_word.lower() in tracked_words:
|
||||
elif stripped_word.lower() in tracked_words:
|
||||
found = stripped_word.lower()
|
||||
|
||||
if found:
|
||||
|
|
Loading…
Reference in a new issue