[pushed] gcc-changelog: do not run extra deduction
Commit Message
Do not deduce changelog for root ChangeLog ('').
Small cleanup, pushed.
@Jonathan: Please update the server hook.
Martin
contrib/ChangeLog:
* gcc-changelog/git_commit.py: Do not deduce changelog for root ChangeLog.
---
contrib/gcc-changelog/git_commit.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
On Tue, 2 Aug 2022 at 09:51, Martin Liška wrote:
>
> Do not deduce changelog for root ChangeLog ('').
>
> Small cleanup, pushed.
>
> @Jonathan: Please update the server hook.
Done. It looks like several recent changes to the hook had not been
committed to the gcc-hooks repo, so I've done that now.
@@ -626,7 +626,7 @@ class GitCommit:
def deduce_changelog_locations(self):
for entry in self.changelog_entries:
- if not entry.folder:
+ if entry.folder is None:
changelog = None
for file in entry.files:
location = self.get_file_changelog_location(file)