diff options
| author | bwarsaw | 2001-07-27 21:27:47 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-27 21:27:47 +0000 |
| commit | 8abd292a6a953b1227db23ca5b6927b1f9a7c410 (patch) | |
| tree | 346eef1c23e20edbb70af98b55369a20ba721143 /Mailman/Cgi/create.py | |
| parent | ae14017ba96ede0d9d1bd6bcfd8bf4952821c216 (diff) | |
| download | mailman-8abd292a6a953b1227db23ca5b6927b1f9a7c410.tar.gz mailman-8abd292a6a953b1227db23ca5b6927b1f9a7c410.tar.zst mailman-8abd292a6a953b1227db23ca5b6927b1f9a7c410.zip | |
Diffstat (limited to 'Mailman/Cgi/create.py')
| -rw-r--r-- | Mailman/Cgi/create.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 70c0d75d1..0089ad4f8 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -71,7 +71,8 @@ def main(): def process_request(doc, cgidata): - listname = cgidata.getvalue('listname', '').strip() + # Lowercase the listname since this is treated as the "internal" name. + listname = cgidata.getvalue('listname', '').strip().lower() owner = cgidata.getvalue('owner', '').strip() try: autogen = int(cgidata.getvalue('autogen', '0')) |
