diff options
| author | bwarsaw | 2002-05-22 03:00:20 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-05-22 03:00:20 +0000 |
| commit | 60790e03afceb35030a4a31dcccc4f0f9d5053fc (patch) | |
| tree | fa70eb1d593b1174a71badfa98d1d319b2818292 /Mailman/Cgi/roster.py | |
| parent | 827dac80874f2f33453aeb2c36e5daa7e2bb406f (diff) | |
| download | mailman-60790e03afceb35030a4a31dcccc4f0f9d5053fc.tar.gz mailman-60790e03afceb35030a4a31dcccc4f0f9d5053fc.tar.zst mailman-60790e03afceb35030a4a31dcccc4f0f9d5053fc.zip | |
Diffstat (limited to 'Mailman/Cgi/roster.py')
| -rw-r--r-- | Mailman/Cgi/roster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/roster.py b/Mailman/Cgi/roster.py index 1f1aa6d0f..71c062400 100644 --- a/Mailman/Cgi/roster.py +++ b/Mailman/Cgi/roster.py @@ -53,7 +53,7 @@ def main(): mlist = MailList.MailList(listname, lock=0) except Errors.MMListError, e: # Avoid cross-site scripting attacks - safelistname = cgi.escape(listname) + safelistname = Utils.websafe(listname) error_page(_('No such list <em>%(safelistname)s</em>')) syslog('error', 'roster: no such list "%s": %s', listname, e) return |
