diff options
author | msapiro <> | 2005-12-06 21:10:17 +0000 |
---|---|---|
committer | msapiro <> | 2005-12-06 21:10:17 +0000 |
commit | b5c1ef5a7aba8c2ff6081d6656b79f8fa1182eb3 (patch) | |
tree | 35601300847d93502353ee689017d9eab72543ac | |
parent | 90bd87b9c89bbb4c481405f34cce985b94ca8c80 (diff) | |
download | mailman2-b5c1ef5a7aba8c2ff6081d6656b79f8fa1182eb3.tar.gz mailman2-b5c1ef5a7aba8c2ff6081d6656b79f8fa1182eb3.tar.xz mailman2-b5c1ef5a7aba8c2ff6081d6656b79f8fa1182eb3.zip |
Make bounce log message format more consistent.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Bouncer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index e2a9de6c..d62fb295 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -145,7 +145,7 @@ class Bouncer: info.score += weight info.date = day syslog('bounce', '%s: %s current bounce score: %s', - member, self.internal_name(), info.score) + self.internal_name(), member, info.score) # Continue to the check phase below # # Now that we've adjusted the bounce score for this bounce, let's |