------------------------------------------------------------ revno: 1177 committer: Mark Sapiro <msap...@value.net> branch nick: 2.2 timestamp: Wed 2011-08-24 09:38:24 -0700 message: Fixed bin/export.py to accept case insensitive password schemes. modified: NEWS bin/export.py
-- lp:mailman/2.2 https://code.launchpad.net/~mailman-coders/mailman/2.2 Your team Mailman Checkins is subscribed to branch lp:mailman/2.2. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'NEWS' --- NEWS 2011-07-25 15:48:52 +0000 +++ NEWS 2011-08-24 16:38:24 +0000 @@ -130,6 +130,9 @@ Bug Fixes and other patches + - Fixed bin/export.py to accept case insensitive password schemes. + Bug #833134. + - Added Tokio Kikuchi's icons to the misc/ and installed icons/ directories. Bug #782474. === modified file 'bin/export.py' --- bin/export.py 2008-11-13 04:02:29 +0000 +++ bin/export.py 2011-08-24 16:38:24 +0000 @@ -1,6 +1,6 @@ #! @PYTHON@ # -# Copyright (C) 2006-2008 by the Free Software Foundation, Inc. +# Copyright (C) 2006-2011 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 @@ -369,7 +369,7 @@ listnames = opts.listnames else: listnames = Utils.list_names() - dumper.dump(listnames, SCHEMES[opts.password_scheme]) + dumper.dump(listnames, SCHEMES[opts.password_scheme.lower()]) dumper.close() finally: if fp is not sys.stdout:
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org