summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/metasummary.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/metasummary.py')
-rw-r--r--testing/web-platform/metasummary.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/web-platform/metasummary.py b/testing/web-platform/metasummary.py
index ee9521c05f..d58ecd84dc 100644
--- a/testing/web-platform/metasummary.py
+++ b/testing/web-platform/metasummary.py
@@ -378,8 +378,8 @@ def add_test_data(logger, wpt_meta, dir_path, test, subtest, test_data):
meta.set(test, subtest, product="firefox", bug_url=bug_link)
-bugzilla_re = re.compile("https://bugzilla\.mozilla\.org/show_bug\.cgi\?id=\d+")
-bug_re = re.compile("(?:[Bb][Uu][Gg])?\s*(\d+)")
+bugzilla_re = re.compile(r"https://bugzilla\.mozilla\.org/show_bug\.cgi\?id=\d+")
+bug_re = re.compile(r"(?:[Bb][Uu][Gg])?\s*(\d+)")
def get_bug_link(value):