summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgs/toolbin/gitlog2changelog.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gs/toolbin/gitlog2changelog.py b/gs/toolbin/gitlog2changelog.py
index a3dc5ce6a..0b4bc7f25 100755
--- a/gs/toolbin/gitlog2changelog.py
+++ b/gs/toolbin/gitlog2changelog.py
@@ -79,7 +79,8 @@ else:
79 for logline in log: 79 for logline in log:
80 if len(logline.strip()) == 0 and marked == 0 : 80 if len(logline.strip()) == 0 and marked == 0 :
81 continue 81 continue
82 sys.stdout.write (logline.replace("<", "&lt;").replace(">", "&gt;") + "<br>\n") 82
83 sys.stdout.write (logline.replace("<", "&lt;").replace(">", "&gt;").rstrip() + "<br>\n")
83 marked = 1 84 marked = 1
84 85
85 sys.stdout.write ("<p>\n") 86 sys.stdout.write ("<p>\n")