summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/core/chains.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/core/chains.py b/src/mailman/core/chains.py
index 40b8c779f..380f10142 100644
--- a/src/mailman/core/chains.py
+++ b/src/mailman/core/chains.py
@@ -56,7 +56,7 @@ def process(mlist, msg, msgdata, start_chain='built-in'):
while chain:
# Iterate over all links in the chain. Do this outside a for-loop so
# we can capture a chain's link iterator in mid-flight. This supports
- # the 'detour' link action
+ # the 'detour' link action.
try:
link = next(chain_iter)
except StopIteration: