diff options
author | Barry Warsaw <barry@python.org> | 2007-12-05 18:22:21 -0500 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2007-12-05 18:22:21 -0500 |
commit | 554ac2bd4866dc2c748d772a97fb9bd4d4ad478f (patch) | |
tree | 85c90c037ee5b5f992c3b291e66c60cab46d9e73 /bin/list_admins | |
parent | db748bc1835610e5e973ee90958f3797ccffc839 (diff) | |
parent | 3a258ad5cdd98c5705af6c02ba91993b3d382adc (diff) | |
download | mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.tar.gz mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.tar.xz mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.zip |
Merge trunk
Diffstat (limited to '')
-rw-r--r-- | bin/list_admins | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/list_admins b/bin/list_admins index c628a42d..b86a5eb8 100644 --- a/bin/list_admins +++ b/bin/list_admins @@ -1,20 +1,21 @@ #! @PYTHON@ # -# Copyright (C) 2001,2002 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2007 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, +# USA. """List all the owners of a mailing list. @@ -71,7 +72,7 @@ def main(): except getopt.error, msg: usage(1, msg) - listnames = args + listnames = [x.lower() for x in args] vhost = None for opt, arg in opts: if opt in ('-h', '--help'): |