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

Unified Diff: git_cl.py

Issue 195793021: Infer CL author and reviewer list from local state if the issue has not previously been uploaded. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Don't worry about the owner -- that's already taken care of elsewhere. Created 6 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
« no previous file with comments | « no previous file | presubmit_canned_checks.py » ('j') | presubmit_canned_checks.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index eaed4baf2291a4d8822987485ef91425df000e73..e7d79dffb743d5ce0364382fda17f756ecda8084 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1694,6 +1694,9 @@ def CMDupload(parser, args):
cl.SetWatchers(watchlist.GetWatchersForPaths(files))
if not options.bypass_hooks:
+ if options.reviewers:
+ # Set the reviewer list now so that presubmit checks can access it.
+ setattr(change, 'R', ','.join(options.reviewers))
Ilya Sherman 2014/03/14 01:45:33 There's probably a better way to do this. Thought
agable 2014/03/14 15:11:03 presubmit_support.py has a Change class which is c
Ilya Sherman 2014/03/18 01:18:35 The Change class doesn't actually ever update the
agable 2014/03/18 17:56:52 You're right, I was working from faulty memory :)
hook_results = cl.RunHook(committing=False,
may_prompt=not options.force,
verbose=options.verbose,
« no previous file with comments | « no previous file | presubmit_canned_checks.py » ('j') | presubmit_canned_checks.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698