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

Unified Diff: tools/telemetry/telemetry/web_perf/timeline_interaction_record.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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
Index: tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
diff --git a/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py b/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
index 7380a447477aab4732848ab722b90d82c616fd58..4c3462f16515dc2d2bccbd3f08254caf22809ff7 100644
--- a/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
+++ b/tools/telemetry/telemetry/web_perf/timeline_interaction_record.py
@@ -156,7 +156,7 @@ class TimelineInteractionRecord(object):
assert async_event.start_thread == async_event.end_thread, (
'Start thread of this record\'s async event is not the same as its '
'end thread')
- m = re.match('Interaction\.(?P<label>.+?)(/(?P<flags>[^/]+))?$',
+ m = re.match(r'Interaction\.(?P<label>.+?)(/(?P<flags>[^/]+))?$',
async_event.name)
assert m, "Async event is not an interaction record."
label = m.group('label')
« no previous file with comments | « tools/telemetry/telemetry/web_perf/metrics/smoothness_unittest.py ('k') | tools/telemetry/unittest_data/test_page_set.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698