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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py

Issue 1809723002: Remove optional --commit-author argument from auto-rebaseline script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
index bb3c8ade2a20f37b20cf08e5a0c100b7bbf62e11..4f20841142c482c6a225a7db7783dba320467f78 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
@@ -136,6 +136,6 @@ class SCM:
def supports_local_commits():
SCM._subclass_must_implement()
- def commit_locally_with_message(self, message, commit_all_working_directory_changes=True, author=None):
+ def commit_locally_with_message(self, message, commit_all_working_directory_changes=True):
_log.error("Your source control manager does not support local commits.")
sys.exit(1)

Powered by Google App Engine
This is Rietveld 408576698