diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-07-12 14:03:26 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-07-12 14:03:26 -0700 |
commit | e80d72c40923b082f5e113b2d732f679c7e8b632 (patch) | |
tree | 404c1379ea723b7767c8e53d9e5695939d1d5b6f /bin | |
parent | 3c41c584c3bd587e0d38ab48ba63a47ead2b18e3 (diff) | |
download | mailman2-e80d72c40923b082f5e113b2d732f679c7e8b632.tar.gz mailman2-e80d72c40923b082f5e113b2d732f679c7e8b632.tar.xz mailman2-e80d72c40923b082f5e113b2d732f679c7e8b632.zip |
- Added more explanation to the bad owner address message from
bin/newlist. (LP: #1200763)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/newlist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/newlist b/bin/newlist index c14b77f3..940ca9f4 100755 --- a/bin/newlist +++ b/bin/newlist @@ -204,7 +204,9 @@ def main(): except Errors.BadListNameError, s: usage(1, _('Illegal list name: %(s)s')) except Errors.EmailAddressError, s: - usage(1, _('Bad owner email address: %(s)s')) + usage(1, _('Bad owner email address: %(s)s') + + _(' - owner addresses need to be fully-qualified names' + ' like "owner@example.com", not just "owner".')) except Errors.MMListAlreadyExistsError: usage(1, _('List already exists: %(listname)s')) |