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

Unified Diff: Tools/GardeningServer/scripts/svn-log.js

Issue 185533013: Garden-o-matic: Use ", " delimiter between all reviewers in the list (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Tools/GardeningServer/scripts/svn-log_unittests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/svn-log.js
diff --git a/Tools/GardeningServer/scripts/svn-log.js b/Tools/GardeningServer/scripts/svn-log.js
index b2858a743c5bd6f9b7803bcc2eedbf41e4ca3d90..de903cc6e6f37f9cc14406a916f08fd5f57408c0 100644
--- a/Tools/GardeningServer/scripts/svn-log.js
+++ b/Tools/GardeningServer/scripts/svn-log.js
@@ -42,7 +42,7 @@ function findReviewer(message)
var reviewers = findUsingRegExp(message, regexp);
if (!reviewers)
return null;
- return reviewers.replace(/\s*,\s*/, ', ');
+ return reviewers.replace(/\s*,\s*/g, ', ');
}
function findBugID(message)
« no previous file with comments | « no previous file | Tools/GardeningServer/scripts/svn-log_unittests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698