diff options
Diffstat (limited to 'contrib/gcc-changelog/git_commit.py')
-rwxr-xr-x | contrib/gcc-changelog/git_commit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py index c9b8497..e4903ca 100755 --- a/contrib/gcc-changelog/git_commit.py +++ b/contrib/gcc-changelog/git_commit.py @@ -155,9 +155,10 @@ REVIEWED_BY_PREFIX = 'reviewed-by: ' REVIEWED_ON_PREFIX = 'reviewed-on: ' SIGNED_OFF_BY_PREFIX = 'signed-off-by: ' -REVIEW_PREFIXES = (REVIEWED_BY_PREFIX, REVIEWED_ON_PREFIX,\ +REVIEW_PREFIXES = (REVIEWED_BY_PREFIX, REVIEWED_ON_PREFIX, SIGNED_OFF_BY_PREFIX) + class Error: def __init__(self, message, line=None): self.message = message @@ -350,7 +351,6 @@ class GitCommit: else: pr_line = line.lstrip() - lowered_line = line.lower() if lowered_line.startswith(CO_AUTHORED_BY_PREFIX): name = line[len(CO_AUTHORED_BY_PREFIX):] |