Commit 92a8922a authored by dtu's avatar dtu Committed by Commit bot

[telemetry] Fix profile_generator test list string.

BUG=None.
TEST=None.
R=tonyg

Review URL: https://codereview.chromium.org/588313002

Cr-Commit-Position: refs/heads/master@{#301032}
parent b9eefc9c
...@@ -81,7 +81,7 @@ def GenerateProfiles(profile_creator_class, profile_creator_name, options): ...@@ -81,7 +81,7 @@ def GenerateProfiles(profile_creator_class, profile_creator_name, options):
if results.failures: if results.failures:
logging.warning('Some pages failed.') logging.warning('Some pages failed.')
logging.warning('Failed pages:\n%s', logging.warning('Failed pages:\n%s',
'\n'.join(results.pages_that_failed)) '\n'.join(map(str, results.pages_that_failed)))
return 1 return 1
# Everything is a-ok, move results to final destination. # Everything is a-ok, move results to final destination.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment