summaryrefslogtreecommitdiff
path: root/src/mailman/app/replybot.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/app/replybot.py')
-rw-r--r--src/mailman/app/replybot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/app/replybot.py b/src/mailman/app/replybot.py
index 0fa73c601..97000c549 100644
--- a/src/mailman/app/replybot.py
+++ b/src/mailman/app/replybot.py
@@ -61,7 +61,7 @@ def can_acknowledge(msg):
return False
if msg.get('x-ack', '').lower() == 'no':
return False
- if msg.get('auto-submitted', 'no').lower() <> 'no':
+ if msg.get('auto-submitted', 'no').lower() != 'no':
return False
if msg.get('return-path') == '<>':
return False