diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-05-05 18:23:56 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-05-05 18:23:56 -0400 |
commit | 993b4b89183492c4cec916ee8ed514394c088dff (patch) | |
tree | 6ff48920ba8c6ac76e0177b5639d284df4a11288 /scripts/maint/format_changelog.py | |
parent | b0ea36d779a0d9e5d94bdb056fb20b93240e404c (diff) | |
download | tor-993b4b89183492c4cec916ee8ed514394c088dff.tar.gz tor-993b4b89183492c4cec916ee8ed514394c088dff.zip |
Fix a bug in format_changelog, in a silly way
Diffstat (limited to 'scripts/maint/format_changelog.py')
-rwxr-xr-x | scripts/maint/format_changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |