From: Martin Liska Date: Wed, 15 Sep 2021 14:38:41 +0000 (+0200) Subject: gcc-changelog: Add FIXME note. X-Git-Tag: basepoints/gcc-13~4763 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a37d7d6fc1dbd9906bbb2c6bf5ba9d30fd17a584;p=thirdparty%2Fgcc.git gcc-changelog: Add FIXME note. contrib/ChangeLog: * gcc-changelog/git_commit.py: Add FIXME note. --- diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py index 03736140fd05..f26dc3b41357 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})'))