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/change_pw | |
parent | db748bc1835610e5e973ee90958f3797ccffc839 (diff) | |
parent | 3a258ad5cdd98c5705af6c02ba91993b3d382adc (diff) | |
download | mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.tar.gz mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.tar.xz mailman2-554ac2bd4866dc2c748d772a97fb9bd4d4ad478f.zip |
Merge trunk
Diffstat (limited to 'bin/change_pw')
-rw-r--r-- | bin/change_pw | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/change_pw b/bin/change_pw index 1305e1a4..965f5e50 100644 --- a/bin/change_pw +++ b/bin/change_pw @@ -1,6 +1,6 @@ #! @PYTHON@ # -# Copyright (C) 2001-2004 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 @@ -14,7 +14,8 @@ # # 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. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, +# USA. """Change a list's password. @@ -133,7 +134,7 @@ def main(): elif opt in ('-d', '--domain'): domains[arg] = 1 elif opt in ('-l', '--listname'): - listnames[arg] = 1 + listnames[arg.lower()] = 1 elif opt in ('-p', '--password'): password = arg elif opt in ('-q', '--quiet'): |