~barry/mailman/events-and-web

« back to all changes in this revision

Viewing changes to src/mailman/commands/cli_members.py

  • Committer: Barry Warsaw
  • Date: 2012-06-28 03:03:04 UTC
  • mto: This revision was merged to the branch mainline in revision 7156.
  • Revision ID: barry@list.org-20120628030304-cjlh7q9tgwasxno2
Replace flufl.password with passlib, albeit with a wrapper.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import codecs
30
30
 
31
31
from email.utils import formataddr, parseaddr
32
 
from flufl.password import generate
33
32
from operator import attrgetter
 
33
from passlib.utils import generate_password as generate
34
34
from zope.component import getUtility
35
35
from zope.interface import implementer
36
36