Chromium Code Reviews| Index: tools/autoroller/roll_chromium_revision.py |
| diff --git a/tools/autoroller/roll_chromium_revision.py b/tools/autoroller/roll_chromium_revision.py |
| index 9aac93fdc2e1d08c9f1ea899ec2944732eaf79ca..70245f3c80fd0462a03c4d52d191e97711f946a7 100755 |
| --- a/tools/autoroller/roll_chromium_revision.py |
| +++ b/tools/autoroller/roll_chromium_revision.py |
| @@ -253,8 +253,8 @@ def CalculateChangedClang(new_cr_rev): |
| def GenerateCommitMessage(current_cr_rev, new_cr_rev, current_commit_pos, |
| new_commit_pos, changed_deps_list, clang_change): |
| - current_cr_rev = current_cr_rev[0:7] |
| - new_cr_rev = new_cr_rev[0:7] |
| + current_cr_rev = current_cr_rev[0:8] |
|
pbos-webrtc
2016/03/30 09:02:40
tbh, pref if you just change this to 12
kjellander_webrtc
2016/03/30 09:28:46
You're right that adding just one doesn't give us
|
| + new_cr_rev = new_cr_rev[0:8] |
| rev_interval = '%s..%s' % (current_cr_rev, new_cr_rev) |
| git_number_interval = '%s:%s' % (current_commit_pos, new_commit_pos) |
| @@ -271,8 +271,8 @@ def GenerateCommitMessage(current_cr_rev, new_cr_rev, current_commit_pos, |
| for c in changed_deps_list: |
| commit_msg.append('* %s: %s/+log/%s..%s' % (c.path, c.url, |
| - c.current_rev[0:7], |
| - c.new_rev[0:7])) |
| + c.current_rev[0:8], |
| + c.new_rev[0:8])) |
| if 'libvpx' in c.path: |
| tbr_authors += 'marpan@webrtc.org, stefan@webrtc.org, ' |