diff options
Diffstat (limited to 'src/mailman/runners/command.py')
| -rw-r--r-- | src/mailman/runners/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/runners/command.py b/src/mailman/runners/command.py index 027791fbf..3d91f663a 100644 --- a/src/mailman/runners/command.py +++ b/src/mailman/runners/command.py @@ -158,7 +158,7 @@ class CommandRunner(Runner): # the command message. precedence = msg.get('precedence', '').lower() ack = msg.get('x-ack', '').lower() - if ack <> 'yes' and precedence in ('bulk', 'junk', 'list'): + if ack != 'yes' and precedence in ('bulk', 'junk', 'list'): log.info('%s Precedence: %s message discarded by: %s', message_id, precedence, mlist.request_address) return False |
