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

Unified Diff: presubmit_canned_checks.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
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: presubmit_canned_checks.py
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py
index bc8c3934d6a6630e30587d71098eba8b2f54c497..5f40f371b71977e1ab151dfff6ebe18e951b9a18 100644
--- a/presubmit_canned_checks.py
+++ b/presubmit_canned_checks.py
@@ -852,6 +852,16 @@ def _GetRietveldIssueProps(input_api, messages):
issue=int(issue), messages=messages)
+def _ReviewersFromChange(change):
+ """Return the reviewers specified in the |change|, if any."""
+ reviewers = set()
+ if change.R:
+ reviewers.update(set([r.strip() for r in change.R.split(',')]))
+ if change.TBR:
+ reviewers.update(set([r.strip() for r in change.TBR.split(',')]))
+ return reviewers
+
+
def _RietveldOwnerAndReviewers(input_api, email_regexp, approval_needed=False):
"""Return the owner and reviewers of a change, if any.
@@ -860,7 +870,7 @@ def _RietveldOwnerAndReviewers(input_api, email_regexp, approval_needed=False):
"""
issue_props = _GetRietveldIssueProps(input_api, True)
if not issue_props:
- return None, set()
+ return None, _ReviewersFromChange(input_api.change)
agable 2014/03/14 15:11:03 This doesn't coincide with the docstring, which sa
Ilya Sherman 2014/03/18 01:18:35 Good catch. Fixed.
if not approval_needed:
return issue_props['owner_email'], set(issue_props['reviewers'])
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698