bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/3] vcs-to-changelog: Fix formatting of ChangeLog ouput


From: Siddhesh Poyarekar
Subject: [PATCH 2/3] vcs-to-changelog: Fix formatting of ChangeLog ouput
Date: Thu, 16 Jan 2020 12:49:54 +0530

Add another newline when the number of files differing is too large.
This is typical for across-the-board changes such as copyright year
updates.

        * build-aux/vcstocl/vcs_git.py (list_changes): Add newline in
        print output.
---
 build-aux/vcstocl/vcs_git.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-aux/vcstocl/vcs_git.py b/build-aux/vcstocl/vcs_git.py
index 0b8099e0b..23ede3b5a 100644
--- a/build-aux/vcstocl/vcs_git.py
+++ b/build-aux/vcstocl/vcs_git.py
@@ -101,7 +101,7 @@ class GitRepo:
         # updates, copyright notice changes, etc.) and likely not interesting
         # enough to produce a detailed ChangeLog entry.
         if len(op) > 100:
-            print('\t* Suppressing diff as too many files differ.')
+            print('\t* Suppressing diff as too many files differ.\n')
             return
 
         # Each of these lines has a space separated format like so:
-- 
2.24.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]