summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-02-18 09:01:56 -0500
committerNick Mathewson <nickm@torproject.org>2020-02-18 09:01:56 -0500
commitd3c23b079a193ba8e820f51ec00740bf63b8d73f (patch)
tree61a9a724b9b963babe63bfee61c727fe9c248a85 /scripts
parentf24959df1dded4a6ca7244dede90bd00af8aa4e0 (diff)
downloadtor-d3c23b079a193ba8e820f51ec00740bf63b8d73f.tar.gz
tor-d3c23b079a193ba8e820f51ec00740bf63b8d73f.zip
lintChanges: Tolerate variants that sortChanges knows how to clean up.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/maint/lintChanges.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/maint/lintChanges.py b/scripts/maint/lintChanges.py
index 88a865a572..2d8b2c6f0d 100755
--- a/scripts/maint/lintChanges.py
+++ b/scripts/maint/lintChanges.py
@@ -25,7 +25,12 @@ KNOWN_GROUPS = set([
"Code simplification and refactoring",
"Removed features",
"Deprecated features",
- "Directory authority changes"])
+ "Directory authority changes",
+
+ # These aren't preferred, but sortChanges knows how to clean them up.
+ "Code simplifications and refactoring",
+ "Code simplification and refactorings",
+ "Code simplifications and refactorings"])
NEEDS_SUBCATEGORIES = set([
"Minor bugfix",