diff options
| author | bwarsaw | 2000-07-21 05:28:11 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-07-21 05:28:11 +0000 |
| commit | 249cdca3058dc73aa15528ec69c2fa10fda49e1f (patch) | |
| tree | 0d40960a3cd8f3e5bb6a6b36da206360fb36ee1a | |
| parent | 1df062ca1bd08ac90a82891c2c338d5b2a181d92 (diff) | |
| download | mailman-249cdca3058dc73aa15528ec69c2fa10fda49e1f.tar.gz mailman-249cdca3058dc73aa15528ec69c2fa10fda49e1f.tar.zst mailman-249cdca3058dc73aa15528ec69c2fa10fda49e1f.zip | |
ScanMessages(): syslog message should read "Bouncer exception..."
| -rw-r--r-- | Mailman/Bouncers/BouncerAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncers/BouncerAPI.py b/Mailman/Bouncers/BouncerAPI.py index 285594279..80eb418db 100644 --- a/Mailman/Bouncers/BouncerAPI.py +++ b/Mailman/Bouncers/BouncerAPI.py @@ -59,7 +59,7 @@ def ScanMessages(mlist, msg, testing=0): try: mlist.RegisterBounce(addr, msg) except Exception, e: - syslog('error', 'Delivery exception: %s' % e) + syslog('error', 'Bouncer exception: %s' % e) s = StringIO() traceback.print_exc(file=s) syslog('error', s.getvalue()) |
