From 36cbcf1be898494cbad747ce154542a893f78f76 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Fri, 19 Nov 2021 07:17:41 +0100 Subject: [PATCH] Remove TBR from version updater script. No-Presubmit: True Bug: webrtc:13373 Change-Id: I9c81b670c0456730495e6ec048a9dadfd4fb6f04 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/238421 Auto-Submit: Mirko Bonadei Commit-Queue: Christoffer Jansson Reviewed-by: Christoffer Jansson Cr-Commit-Position: refs/heads/main@{#35382} --- tools_webrtc/version_updater/update_version.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools_webrtc/version_updater/update_version.py b/tools_webrtc/version_updater/update_version.py index 6c01476535..8674f3643a 100644 --- a/tools_webrtc/version_updater/update_version.py +++ b/tools_webrtc/version_updater/update_version.py @@ -109,12 +109,10 @@ def _LocalCommit(): git_author = subprocess.check_output(['git', 'config', 'user.email']).strip() - tbr_authors = git_author + ',' + 'mbonadei@webrtc.org' - tbr = 'TBR=%s' % tbr_authors commit_msg = ('Update WebRTC code version (%02d-%02d-%02dT%02d:%02d:%02d).' - '\n\nTBR=%s\nBug: None') + '\n\nBug: None') commit_msg = commit_msg % (d.year, d.month, d.day, d.hour, d.minute, - d.second, tbr_authors) + d.second) subprocess.check_call(['git', 'add', '--update', '.']) subprocess.check_call(['git', 'commit', '-m', commit_msg])