aboutsummaryrefslogtreecommitdiff
path: root/contrib/format_changelog.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/format_changelog.py')
-rwxr-xr-xcontrib/format_changelog.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/format_changelog.py b/contrib/format_changelog.py
index 123005322..6997d958a 100755
--- a/contrib/format_changelog.py
+++ b/contrib/format_changelog.py
@@ -110,7 +110,8 @@ class ChangeLog(object):
text = " ".join(re.sub(r'\s+', ' ', line.strip()) for line in par)
print textwrap.fill(text, width=72,
initial_indent=" "*indent1,
- subsequent_indent=" "*indent2)
+ subsequent_indent=" "*indent2,
+ break_on_hyphens=False)
def dump(self):
print self.mainhead