Index: infra/tools/antibody/git_commit_parser.py |
diff --git a/infra/tools/antibody/git_commit_parser.py b/infra/tools/antibody/git_commit_parser.py |
index 7510743aeb2551e3424586ce78193f58651e543c..5ecb6b1c87cccb484c929ce62f3d913f7d29b090 100644 |
--- a/infra/tools/antibody/git_commit_parser.py |
+++ b/infra/tools/antibody/git_commit_parser.py |
@@ -85,6 +85,8 @@ def get_review_url(git_line): |
review_url = git_line[12:] |
elif re.match(r'^Code review URL:.+$', git_line): |
review_url = git_line[17:] |
+ elif re.match(r'^Reviewed-on:.+$', git_line): |
+ review_url = git_line[13:] |
pgervais
2015/07/23 18:30:36
13 or 12? If there is a space after the colon, ple
|
return review_url |