diff options
| author | Barry Warsaw | 2011-04-08 20:09:13 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-04-08 20:09:13 -0400 |
| commit | c73acb993acfc08f542b886eb426d6156a6a0a13 (patch) | |
| tree | 6e90dba19d1319df6a6ce2baaa345c8289283dc2 /src/mailman/model/user.py | |
| parent | 664cc74fd0c0156424e8fa891d1a9e75faabd09d (diff) | |
| download | mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.tar.gz mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.tar.zst mailman-c73acb993acfc08f542b886eb426d6156a6a0a13.zip | |
Diffstat (limited to 'src/mailman/model/user.py')
| -rw-r--r-- | src/mailman/model/user.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mailman/model/user.py b/src/mailman/model/user.py index 05ce356ca..16d5b1a2f 100644 --- a/src/mailman/model/user.py +++ b/src/mailman/model/user.py @@ -24,7 +24,8 @@ __all__ = [ 'User', ] -from storm.locals import DateTime, Int, Reference, ReferenceSet, Unicode +from storm.locals import ( + DateTime, Int, RawStr, Reference, ReferenceSet, Unicode) from zope.interface import implements from mailman.config import config @@ -47,7 +48,7 @@ class User(Model): id = Int(primary=True) real_name = Unicode() - password = Unicode() + password = RawStr() _user_id = Unicode() _created_on = DateTime() |
