| 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 c06ae5e7697803daab9a6223dcbb305d4de29bf2..3a84953c899e694e0f2574fdb873a2a88379cd16 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
|
| @@ -59,7 +59,7 @@ class DepsUpdater(object):
|
|
|
| has_changes = self.commit_changes_if_needed(chromium_commitish, import_commitish)
|
| if options.auto_update and has_changes:
|
| - commit_successful = self.do_auto_update(options.auth_refresh_token_json)
|
| + commit_successful = self.do_auto_update()
|
| if not commit_successful:
|
| return 1
|
| return 0
|
| @@ -260,7 +260,7 @@ class DepsUpdater(object):
|
| def print_(self, msg):
|
| self.host.print_(msg)
|
|
|
| - def do_auto_update(self, auth_refresh_token_json):
|
| + def do_auto_update(self):
|
| """Attempts to upload a CL, make any required adjustments, and commit.
|
|
|
| This function assumes that the imported repo has already been updated,
|
| @@ -274,7 +274,7 @@ class DepsUpdater(object):
|
| self.print_('## Uploading change list.')
|
| cc_list = self.get_directory_owners_to_cc()
|
| self.git_cl.run([
|
| - 'upload', '-f', '--rietveld'
|
| + 'upload', '-f', '--rietveld',
|
| '-m', 'W3C auto test import CL.\n\nTBR=qyearsley@chromium.org',
|
| ] + ['--cc=' + email for email in cc_list])
|
|
|
|
|