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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py

Issue 2232983002: Add TBR to commit message (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added new lines Created 4 years, 4 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: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
index f2f029369490421abc5a9ef268f49ef3cc32d6e2..0d600f2cb4ac51f3c4cf9f99e7e8a7c80e56fbe8 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
@@ -342,7 +342,7 @@ class DepsUpdater(object):
self.print_('## Adding test expectations lines to LayoutTests/TestExpectations.')
script_path = self.path_from_webkit_base('Tools', 'Scripts', 'update-w3c-test-expectations')
self.run([self.host.executable, script_path])
- message = '\'Modifies TestExpectations and/or downloads new baselines for tests .\''
+ message = '\'Modifies TestExpectations and/or downloads new baselines for tests\''
self.check_run(['git', 'commit', '-a', '-m', message])
self.check_run(['git', 'cl', 'upload', '-m', message,
'--auth-refresh-token-json', self.auth_refresh_token_json])
@@ -360,7 +360,11 @@ class DepsUpdater(object):
return False
def generate_upload_command(self, email_list):
- command = ['git', 'cl', 'upload', '-f', '-m', 'W3C auto test importer']
+ message = """W3C auto test importer
+
+TBR=qyearsley@chromium.org"""
+
+ command = ['git', 'cl', 'upload', '-f', '-m', message]
command += ['--cc=' + email for email in email_list]
if self.auth_refresh_token_json:
command += ['--auth-refresh-token-json', self.auth_refresh_token_json]
« 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