Commit 993b4b89 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Fix a bug in format_changelog, in a silly way

parent b0ea36d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):