summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/cook_headers.py
diff options
context:
space:
mode:
authorBarry Warsaw2014-11-08 10:14:00 -0500
committerBarry Warsaw2014-11-08 10:14:00 -0500
commit410b2fae5eaba2e4bb6c2ebdc86d99eab4effc56 (patch)
tree754e4621eb24a9925bc3089461d65be518ae1160 /src/mailman/handlers/cook_headers.py
parent1d9f6970b9a26ee576838b53f485b96365e3a6c2 (diff)
parent249607949d5eab11e63e52cbac65e8a68327d593 (diff)
downloadmailman-410b2fae5eaba2e4bb6c2ebdc86d99eab4effc56.tar.gz
mailman-410b2fae5eaba2e4bb6c2ebdc86d99eab4effc56.tar.zst
mailman-410b2fae5eaba2e4bb6c2ebdc86d99eab4effc56.zip
Diffstat (limited to 'src/mailman/handlers/cook_headers.py')
-rw-r--r--src/mailman/handlers/cook_headers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/handlers/cook_headers.py b/src/mailman/handlers/cook_headers.py
index 2ce3f653e..d5d096448 100644
--- a/src/mailman/handlers/cook_headers.py
+++ b/src/mailman/handlers/cook_headers.py
@@ -136,7 +136,7 @@ def process(mlist, msg, msgdata):
# Set Reply-To: header to point back to this list. Add this last
# because some folks think that some MUAs make it easier to delete
# addresses from the right than from the left.
- if mlist.reply_goes_to_list == ReplyToMunging.point_to_list:
+ if mlist.reply_goes_to_list is ReplyToMunging.point_to_list:
i18ndesc = uheader(mlist, mlist.description, 'Reply-To')
add((str(i18ndesc), mlist.posting_address))
del msg['reply-to']