From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 6F64C385840E; Wed, 15 Sep 2021 14:39:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6F64C385840E MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-3550] gcc-changelog: Add FIXME note. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: e0fcdc46a2f1fefa0372f0ee81db780155ee365d X-Git-Newrev: a37d7d6fc1dbd9906bbb2c6bf5ba9d30fd17a584 Message-Id: <20210915143907.6F64C385840E@sourceware.org> Date: Wed, 15 Sep 2021 14:39:07 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Sep 2021 14:39:07 -0000 https://gcc.gnu.org/g:a37d7d6fc1dbd9906bbb2c6bf5ba9d30fd17a584 commit r12-3550-ga37d7d6fc1dbd9906bbb2c6bf5ba9d30fd17a584 Author: Martin Liska Date: Wed Sep 15 16:38:41 2021 +0200 gcc-changelog: Add FIXME note. contrib/ChangeLog: * gcc-changelog/git_commit.py: Add FIXME note. Diff: --- contrib/gcc-changelog/git_commit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py index 03736140fd0..f26dc3b4135 100755 --- a/contrib/gcc-changelog/git_commit.py +++ b/contrib/gcc-changelog/git_commit.py @@ -811,5 +811,6 @@ class GitCommit: email = self.info.author.split(' ')[-1].strip('<>') # Verify that all characters are ASCII + # TODO: Python 3.7 provides a nicer function: isascii if len(email) != len(email.encode()): self.errors.append(Error(f'non-ASCII characters in git commit email address ({email})'))