| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| index 4db22d7880bf0ceaea1252151981ed8937bb3f1c..3ecf37c89cca88f64fc91f5a84c9b7f415c7be30 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
|
| @@ -77,7 +77,9 @@ class TestImporter(object):
|
| if options.target == 'wpt':
|
| commits = self.exportable_but_not_exported_commits(temp_repo_path)
|
| if commits:
|
| - _log.error('There were exportable but not-yet-exported commits: %r', commits)
|
| + _log.error('There were exportable but not-yet-exported commits:')
|
| + for commit in commits:
|
| + _log.error(' https://chromium.googlesource.com/chromium/src/+/%s', commit.sha)
|
| _log.error('Aborting import to prevent clobbering these commits.')
|
| return 1
|
|
|
|
|