Skip to content

Commit

Permalink
Fix W605 invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Dec 17, 2018
1 parent 4b032bc commit f0f52a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coloredlogs/converter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# Compiled regular expression that matches strings we want to convert. Used to
# separate all special strings and literal output in a single pass (this allows
# us to properly encode the output without resorting to nasty hacks).
TOKEN_PATTERN = re.compile('''
TOKEN_PATTERN = re.compile(r'''
# Wrap the pattern in a capture group so that re.split() includes the
# substrings that match the pattern in the resulting list of strings.
(
Expand Down

0 comments on commit f0f52a5

Please sign in to comment.