Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct the bad '\Z' escape sequence in a regex (#79)
Problem: We're seeing errors in a mingw64 environment: ``` SyntaxWarning: invalid escape sequence '\Z' _standard_string_regex = ... SyntaxWarning: invalid escape sequence '\Z' _file_dialog_filter_pattern_regex = ... ``` Solution: These should be raw strings. '\Z' is a special regex marker signifying the end of string. Signed-off-by: Daniel Neilson <[email protected]>
- Loading branch information