diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-10-19 12:59:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-10-19 12:59:17 -0400 |
commit | 53440938294eba6305da69362f03a645afb8e636 (patch) | |
tree | cfcff6de9177cc4fa7facbc1484fdb86bf4d34bb /scripts | |
parent | 29b0e82b5a0e5c3f8b0911a9bbbf55237ae64cca (diff) | |
download | tor-53440938294eba6305da69362f03a645afb8e636.tar.gz tor-53440938294eba6305da69362f03a645afb8e636.zip |
format_changelog.py: fix spelling of "hyphenatable"
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/maint/format_changelog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py index 6b4e757345..398e7ea611 100755 --- a/scripts/maint/format_changelog.py +++ b/scripts/maint/format_changelog.py @@ -119,7 +119,7 @@ def wrap_graf(words, prefix_len1=0, prefix_len2=0, width=72): return lines -def hyphenateable(word): +def hyphenatable(word): if "--" in word: return False @@ -135,7 +135,7 @@ def split_paragraph(s): r = [] for word in s.split(): - if hyphenateable(word): + if hyphenatable(word): while "-" in word: a,word = word.split("-",1) r.append(a+"\xff") |