Skip to content
Snippets Groups Projects
Commit 993b4b89 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix a bug in format_changelog, in a silly way

parent b0ea36d7
Branches
Tags
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment