summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/unittestrunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/unittestrunner.py')
-rw-r--r--testing/web-platform/unittestrunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/web-platform/unittestrunner.py b/testing/web-platform/unittestrunner.py
index 2d1764f78e..0242d963fa 100644
--- a/testing/web-platform/unittestrunner.py
+++ b/testing/web-platform/unittestrunner.py
@@ -51,7 +51,7 @@ class ReplaceRequirements(object):
with open(path) as f:
parser.read_file(f)
deps = parser.get("testenv", "deps")
- dep_re = re.compile("(?:.*:\s*)?-r(.*)")
+ dep_re = re.compile(r"(?:.*:\s*)?-r(.*)")
# This can break if we start using more features of tox
for dep in deps.splitlines():