From b08b23e9899b6d708081aee1f7e46a27a672fd3c Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Tue, 15 Dec 2020 13:15:01 +0100 Subject: [PATCH] Fix typo in auto-updater. No-Try: True No-Presubmit: True Bug: webrtc:12159 Change-Id: I116d1cbe63d2b6b2d18446e2d550ca61e6c34db8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/197805 Reviewed-by: Niels Moller Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#32832} --- tools_webrtc/version_updater/update_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools_webrtc/version_updater/update_version.py b/tools_webrtc/version_updater/update_version.py index 8d65586c6b..d5a72b8710 100644 --- a/tools_webrtc/version_updater/update_version.py +++ b/tools_webrtc/version_updater/update_version.py @@ -104,7 +104,7 @@ def _LocalCommit(): 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\nBugs: None') + '\n\nTBR=%s\nBug: None') commit_msg = commit_msg % (d.year, d.month, d.day, d.hour, d.minute, d.second, tbr_authors) subprocess.check_call(['git', 'add', '--update', '.'])