Skip to content
Snippets Groups Projects
Commit f16c03c7 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

tests: use raw string in test-check-code.t

To avoid a SyntaxWarning on Python 3.8 due to invalid \ escape.

Differential Revision: https://phab.mercurial-scm.org/D5837
parent 20e62312
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@
>>> commands = []
>>> with open('mercurial/debugcommands.py', 'rb') as fh:
... for line in fh:
... m = re.match(b"^@command\('([a-z]+)", line)
... m = re.match(br"^@command\('([a-z]+)", line)
... if m:
... commands.append(m.group(1))
>>> scommands = list(sorted(commands))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment