diff options
| author | Barry Warsaw | 2011-11-02 15:41:39 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-11-02 15:41:39 -0400 |
| commit | f48ca2a1aa74a1b0fe14003d9ceb37e146b46738 (patch) | |
| tree | 3df8d993612a41064d8a69b7de831bff2f57ff8e /src/mailman/app/replybot.py | |
| parent | f8456fef792eaa7b36a5b04072c5ad15d5fb6d48 (diff) | |
| download | mailman-f48ca2a1aa74a1b0fe14003d9ceb37e146b46738.tar.gz mailman-f48ca2a1aa74a1b0fe14003d9ceb37e146b46738.tar.zst mailman-f48ca2a1aa74a1b0fe14003d9ceb37e146b46738.zip | |
Diffstat (limited to 'src/mailman/app/replybot.py')
| -rw-r--r-- | src/mailman/app/replybot.py | 2 |
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 |
