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

Unified Diff: gm/rebaseline_server/download_actuals.py

Issue 789253002: Remove MULTILINE, ^, and $ from re finding actual_results.json. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/rebaseline_server/download_actuals.py
diff --git a/gm/rebaseline_server/download_actuals.py b/gm/rebaseline_server/download_actuals.py
index ae16770c494ba664442e15f3e196cdd70fb1f093..0e60289573ad2a5fa9b424c2c2f519f6c0e6c237 100755
--- a/gm/rebaseline_server/download_actuals.py
+++ b/gm/rebaseline_server/download_actuals.py
@@ -162,8 +162,8 @@ class RietveldIssueActuals(object):
"""
result = dict()
json_filename_re = re.compile(
- '^Created: gs://([^/]+)/((?:[^/]+/)+%s)#(\d+)$'
- % re.escape(self._json_filename), re.MULTILINE)
+ 'Created: gs://([^/]+)/((?:[^/]+/)+%s)#(\d+)'
+ % re.escape(self._json_filename))
codereview_api_url = 'https://codereview.chromium.org/api'
upload_gm_step_url = '/steps/Upload GM Results/logs/stdio'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698