summaryrefslogtreecommitdiff
path: root/src/mailman/chains/builtin.py
diff options
context:
space:
mode:
authorBarry Warsaw2010-02-16 19:20:01 -0500
committerBarry Warsaw2010-02-16 19:20:01 -0500
commitb008112245064f5dbdbe4104c9a3e89694c75cfc (patch)
tree1b3fa89615f974372baa8fa79f2578ba651aac71 /src/mailman/chains/builtin.py
parent006515005077b7b4b6fbb18d593800264ed307c4 (diff)
downloadmailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.tar.gz
mailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.tar.zst
mailman-b008112245064f5dbdbe4104c9a3e89694c75cfc.zip
Diffstat (limited to 'src/mailman/chains/builtin.py')
-rw-r--r--src/mailman/chains/builtin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/chains/builtin.py b/src/mailman/chains/builtin.py
index 763314982..fc31085f3 100644
--- a/src/mailman/chains/builtin.py
+++ b/src/mailman/chains/builtin.py
@@ -62,10 +62,10 @@ class BuiltInChain:
('suspicious-header', LinkAction.defer, None),
# Now if any of the above hit, jump to the hold chain.
('any', LinkAction.jump, 'hold'),
- # Take a detour through the self header matching chain, which we'll
- # create later.
+ # Take a detour through the header matching chain, which we'll create
+ # later.
('truth', LinkAction.detour, 'header-match'),
- # Finally, the builtin chain selfs to acceptance.
+ # Finally, the builtin chain jumps to acceptance.
('truth', LinkAction.jump, 'accept'),
)