From: Nick Mathewson Date: Tue, 5 May 2015 22:23:56 +0000 (-0400) Subject: Fix a bug in format_changelog, in a silly way X-Git-Tag: tor-0.2.7.1-alpha~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=993b4b89183492c4cec916ee8ed514394c088dff;p=thirdparty%2Ftor.git Fix a bug in format_changelog, in a silly way --- diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py index d1b4a3dff3..a557fcaf40 100755 --- a/scripts/maint/format_changelog.py +++ b/scripts/maint/format_changelog.py @@ -59,7 +59,7 @@ def generate_wrapping(words, divisions): w = words[last:i] last = i line = " ".join(w).replace("\xff ","-").replace("\xff","-") - lines.append(line) + lines.append(line.strip()) return lines def wrapping_quality(words, divisions, width1, width2):