Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py

Issue 2305143003: webkitpy: Make all regex strings use raw string literals. (Closed)
Patch Set: Make all regex strings raw strings. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py
index c797ed1e2c68b6e7f37e9c39c80d8f93df669fdd..f3eada2f9fb8b83c816d0ae1649afaa76608422f 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/queries.py
@@ -159,7 +159,7 @@ class PrintBaselines(Command):
help='Include virtual tests'),
] + platform_options(use_globs=True)
super(PrintBaselines, self).__init__(options=options)
- self._platform_regexp = re.compile('platform/([^\/]+)/(.+)')
+ self._platform_regexp = re.compile(r'platform/([^\/]+)/(.+)')
def execute(self, options, args, tool):
if not args and not options.all:
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/style/patchreader.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698