diff options
| author | bwarsaw | 2001-11-06 23:29:19 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-11-06 23:29:19 +0000 |
| commit | e4418ac16e5b53fc1033b8078b0b4e2c5121956c (patch) | |
| tree | 10fea794575d29fbb963c6bdd8971262eb09c019 /Mailman/Cgi/create.py | |
| parent | 86a9da2e1a76d8546cdd18fc702b55fb2352435d (diff) | |
| download | mailman-e4418ac16e5b53fc1033b8078b0b4e2c5121956c.tar.gz mailman-e4418ac16e5b53fc1033b8078b0b4e2c5121956c.tar.zst mailman-e4418ac16e5b53fc1033b8078b0b4e2c5121956c.zip | |
Diffstat (limited to 'Mailman/Cgi/create.py')
| -rw-r--r-- | Mailman/Cgi/create.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 359a41c4f..3c7ff8a85 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -124,8 +124,13 @@ def process_request(doc, cgidata): _('Initial list passwords do not match')) return if not password: - request_creation(doc, cgidata, - _('The list password cannot be empty')) + request_creation( + doc, cgidata, + # The little <!-- ignore --> tag is used so that this string + # differs from the one in bin/newlist. The former is destined + # for the web while the latter is destined for email, so they + # must be different entries in the message catalog. + _('The list password cannot be empty<!-- ignore -->')) return # The authorization password must be non-empty, and it must match either # the list creation password or the site admin password |
