~tgc/mailman/2.1-da

« back to all changes in this revision

Viewing changes to bin/newlist

  • Committer: Mark Sapiro
  • Date: 2013-04-07 05:54:18 UTC
  • Revision ID: msapiro@value.net-20130407055418-3ocsw3ajga2vv82l
Defended against buggy web servers that don't include an empty
QUERY_STRING in the CGI environment.  (LP: 1160647)

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
        except Errors.BadListNameError, s:
205
205
            usage(1, _('Illegal list name: %(s)s'))
206
206
        except Errors.EmailAddressError, s:
207
 
            usage(1, _('Bad owner email address: %(s)s') +
208
 
                     _(' - owner addresses need to be fully-qualified names'
209
 
                       ' like "owner@example.com", not just "owner".'))
 
207
            usage(1, _('Bad owner email address: %(s)s'))
210
208
        except Errors.MMListAlreadyExistsError:
211
209
            usage(1, _('List already exists: %(listname)s'))
212
210