diff options
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 ed29e7f59..0ca51bd65 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -161,7 +161,8 @@ def process_request(doc, cgidata): # We've got all the data we need, so go ahead and try to create the list mlist = MailList.MailList() try: - pw = passwords.make_secret(password, config.PASSWORD_SCHEME) + scheme = passwords.lookup_scheme(config.PASSWORD_SCHEME.lower()) + pw = passwords.make_secret(password, scheme) try: mlist.Create(fqdn_listname, owner, pw, langs) except Errors.EmailAddressError, s: |
