diff mbox series

[pushed] gcc-changelog: do not run extra deduction

Message ID aaeae3c3-4ba0-c324-1143-1e1306c75ac7@suse.cz
State New
Headers show
Series [pushed] gcc-changelog: do not run extra deduction | expand

Commit Message

Martin Liška Aug. 2, 2022, 8:51 a.m. UTC
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

Jonathan Wakely Aug. 2, 2022, 10:10 a.m. UTC | #1
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.
diff mbox series

Patch

diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py
index a6b5ff04f22..7f6ff87ba99 100755
--- a/contrib/gcc-changelog/git_commit.py
+++ b/contrib/gcc-changelog/git_commit.py
@@ -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)