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

Unified Diff: tools/telemetry/telemetry/page/profile_generator.py

Issue 588313002: [telemetry] Fix profile_generator test list string. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/page/profile_generator.py
diff --git a/tools/telemetry/telemetry/page/profile_generator.py b/tools/telemetry/telemetry/page/profile_generator.py
index 66e3e3ab8001723807fce3e2bd92f0bd734636c2..484c0630d4932a66da527a67a42413722f574dff 100644
--- a/tools/telemetry/telemetry/page/profile_generator.py
+++ b/tools/telemetry/telemetry/page/profile_generator.py
@@ -81,7 +81,7 @@ def GenerateProfiles(profile_creator_class, profile_creator_name, options):
if results.failures:
logging.warning('Some pages failed.')
logging.warning('Failed pages:\n%s',
- '\n'.join(results.pages_that_failed))
+ '\n'.join(map(str, results.pages_that_failed)))
return 1
# Everything is a-ok, move results to final destination.
« 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