summaryrefslogtreecommitdiff
path: root/src/mailman/rules/suspicious.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-11-28 17:19:18 -0500
committerBarry Warsaw2016-11-28 20:31:09 -0500
commitda0789ceedbeddcae6b47545c115f5e659de019d (patch)
tree1d7cbea5e0895c935f9905c852cd332a000b4e8a /src/mailman/rules/suspicious.py
parent8ee8a7d2cb598138aeadfebe8eb5cc3f8fb2d88a (diff)
downloadmailman-da0789ceedbeddcae6b47545c115f5e659de019d.tar.gz
mailman-da0789ceedbeddcae6b47545c115f5e659de019d.tar.zst
mailman-da0789ceedbeddcae6b47545c115f5e659de019d.zip
Diffstat (limited to 'src/mailman/rules/suspicious.py')
-rw-r--r--src/mailman/rules/suspicious.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/rules/suspicious.py b/src/mailman/rules/suspicious.py
index acb17334a..679605fd6 100644
--- a/src/mailman/rules/suspicious.py
+++ b/src/mailman/rules/suspicious.py
@@ -87,7 +87,7 @@ def has_matching_bounce_header(mlist, msg):
"""
for header, cre, line in _parse_matching_header_opt(mlist):
for value in msg.get_all(header, []):
- # Convert the header value to string because it may be an
+ # Convert the header value to a str because it may be an
# email.header.Header instance.
if cre.search(str(value)):
return True