summaryrefslogtreecommitdiff
path: root/src/mailman/email/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/email/message.py')
-rw-r--r--src/mailman/email/message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/email/message.py b/src/mailman/email/message.py
index 7f7ee66ed..28d94523f 100644
--- a/src/mailman/email/message.py
+++ b/src/mailman/email/message.py
@@ -193,7 +193,7 @@ class UserNotification(Message):
# UserNotifications are typically for admin messages, and for messages
# other than list explosions. Send these out as Precedence: bulk, but
# don't override an existing Precedence: header.
- if 'precedence' not in self or not noprecedence:
+ if 'precedence' not in self and not noprecedence:
self['Precedence'] = 'bulk'
self._enqueue(mlist, **_kws)