Rewrite some strings using raw string syntax.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
e30b3b094b
commit
d68437d5f5
4 changed files with 31 additions and 31 deletions
|
@ -52,7 +52,7 @@ def process_lines(raw_lines, file_name):
|
|||
lines = []
|
||||
for line in raw_lines:
|
||||
# Add any filtering or modification code here
|
||||
if re.match(".*upstream timed out.*while reading upstream.*", line):
|
||||
if re.match(r".*upstream timed out.*while reading upstream.*", line):
|
||||
continue
|
||||
lines.append(line)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue