gcc-changelog: Ignore one more commit.
authorMartin Liska <mliska@suse.cz>
Fri, 11 Jun 2021 08:13:54 +0000 (10:13 +0200)
committerMartin Liska <mliska@suse.cz>
Fri, 11 Jun 2021 08:13:54 +0000 (10:13 +0200)
contrib/ChangeLog:

* gcc-changelog/git_update_version.py: Ignore commit that
violates rules and was somehow pushed.

contrib/gcc-changelog/git_update_version.py

index 0508f19..b97ca58 100755 (executable)
@@ -27,7 +27,9 @@ from git_repository import parse_git_revisions
 current_timestamp = datetime.datetime.now().strftime('%Y%m%d\n')
 
 # Skip the following commits, they cannot be correctly processed
-IGNORED_COMMITS = ('c2be82058fb40f3ae891c68d185ff53e07f14f45')
+IGNORED_COMMITS = (
+        'c2be82058fb40f3ae891c68d185ff53e07f14f45',
+        '04a040d907a83af54e0a98bdba5bfabc0ef4f700')
 
 
 def read_timestamp(path):