diff options
| author | 2019-01-04 12:36:38 +0000 | |
|---|---|---|
| committer | 2019-01-04 12:36:38 +0000 | |
| commit | 38b7a1dadf0ceeb2e27bc4c1277e3824573ea8cc (patch) | |
| tree | 195a2fb90ca5366e4fe3577fc30175f1e3e296a2 | |
| parent | Allow tracking words that have characters deemed as "start"/"end" characters (diff) | |
| signature | ||
Typo in words.py: 'strippped_word' -> 'stripped_word'
| -rw-r--r-- | modules/words.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/words.py b/modules/words.py index 3e963d95..e330f42c 100644 --- a/modules/words.py +++ b/modules/words.py @@ -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: |
