diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-02-28 10:12:17 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-02-28 10:12:17 -0500 |
commit | 1453bda67b03f1405a3ecc80be9f0378ef813a2f (patch) | |
tree | 634d2ba3c95a6fd1519658a5156a9cab3fc7a639 /scripts/maint/format_changelog.py | |
parent | 3c56db431e3a879b4086e1cd6297a2e7ef59eeb1 (diff) | |
download | tor-1453bda67b03f1405a3ecc80be9f0378ef813a2f.tar.gz tor-1453bda67b03f1405a3ecc80be9f0378ef813a2f.zip |
Update changelog sorting rules to know about dirauth changes
Diffstat (limited to 'scripts/maint/format_changelog.py')
-rwxr-xr-x | scripts/maint/format_changelog.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py index e909fc550a..2429c24417 100755 --- a/scripts/maint/format_changelog.py +++ b/scripts/maint/format_changelog.py @@ -205,6 +205,8 @@ def head_score(s): score = -300 elif lw.startswith("deprecated version"): score = -200 + elif lw.startswith("directory auth"): + score = -150 elif (('new' in lw and 'requirement' in lw) or ('new' in lw and 'dependenc' in lw) or ('build' in lw and 'requirement' in lw) or |