Fix a bug in format_changelog, in a silly way

This commit is contained in:
Nick Mathewson
2015-05-05 18:23:56 -04:00
parent b0ea36d779
commit 993b4b8918
+1 -1
View File
@@ -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):