diff options
author | Mark Sapiro <mark@msapiro.net> | 2014-03-21 20:47:45 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2014-03-21 20:47:45 -0700 |
commit | a3396edb09355cf29e69f03a1df78fbd10a1d849 (patch) | |
tree | f3bc8502ef6778b142eafc2d4a2541fb66dcb9f0 /Mailman/Cgi/roster.py | |
parent | 9e1368ae5e7454b54b075ba14baec1bb0671b0fc (diff) | |
download | mailman2-a3396edb09355cf29e69f03a1df78fbd10a1d849.tar.gz mailman2-a3396edb09355cf29e69f03a1df78fbd10a1d849.tar.xz mailman2-a3396edb09355cf29e69f03a1df78fbd10a1d849.zip |
- Added the list name to the vette log "held message approved" entry.
(LP: 1295875)
- Added the CGI module name to various "No such list" error log entries.
(LP: 1295875)
- Modified contrib/mmdsr to report module name if present in "No such list
error log entries.
Diffstat (limited to 'Mailman/Cgi/roster.py')
-rw-r--r-- | Mailman/Cgi/roster.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Cgi/roster.py b/Mailman/Cgi/roster.py index 6260c973..6c64925b 100644 --- a/Mailman/Cgi/roster.py +++ b/Mailman/Cgi/roster.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2014 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -57,7 +57,7 @@ def main(): # Send this with a 404 status. print 'Status: 404 Not Found' error_page(_('No such list <em>%(safelistname)s</em>')) - syslog('error', 'roster: no such list "%s": %s', listname, e) + syslog('error', 'roster: No such list "%s": %s', listname, e) return cgidata = cgi.FieldStorage() |