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

Unified Diff: git_cl.py

Issue 23072039: Fix R= line rewriter to handle TBRs well. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 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 | tests/git_cl_test.py » ('j') | tests/git_cl_test.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 dc351a2123a9f1bb29c2c7cf95806e7b4dcf7d1e..66eb310f8fb4980b157c51cd1dcaeae03dbd0a44 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -858,24 +858,35 @@ class ChangeDescription(object):
return self._description
def update_reviewers(self, reviewers):
- """Rewrites the R=/TBR= line(s) as a single line."""
+ """Rewrites the R=/TBR= line(s) as a single line each."""
assert isinstance(reviewers, list), reviewers
if not reviewers:
return
regexp = re.compile(self.R_LINE, re.MULTILINE)
matches = list(regexp.finditer(self._description))
- is_tbr = any(m.group(1) == 'TBR' for m in matches)
+ r_names = []
+ tbr_names = []
+ for line in matches:
+ is_tbr = line.group(1) == 'TBR'
+ people = cleanup_list([line.group(2).strip()])
+ if is_tbr:
+ tbr_names += people
+ else:
+ r_names += people
if len(matches) > 1:
# Erase all except the first one.
for i in xrange(len(matches) - 1, 0, -1):
self._description = (
self._description[:matches[i].start()] +
self._description[matches[i].end():])
-
- if is_tbr:
- new_r_line = 'TBR=' + ', '.join(reviewers)
- else:
- new_r_line = 'R=' + ', '.join(reviewers)
+ # Copy the names from the description into the official list.
+ for name in r_names:
+ if name not in reviewers:
+ reviewers.append(name)
+
+ new_r_line = 'R=' + ', '.join(reviewers)
M-A Ruel 2013/08/23 15:22:53 I'd also skip it unless "if reviewers:"
agable 2013/08/23 18:43:00 I ended up refactoring most of the ChangeDescripti
+ if tbr_names:
+ new_r_line += '\nTBR=' + ', '.join(tbr_names)
if matches:
self._description = (
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | tests/git_cl_test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698