Open landiisotta opened 1 year ago
Since Python 3.6 the inline flags not at the start of regular expression throw an error. Modified line 226 of philter.py:
philter.py
re.error
(?i)
I also ran into the re.error when following the instructions in the readme, and was able to run philter successfully (steps 0, 2a, and 2d) using the changes in this PR.
Since Python 3.6 the inline flags not at the start of regular expression throw an error. Modified line 226 of
philter.py
:re.error
;(?i)
to the start of the regular expression.