diff options
| author | Barry Warsaw | 2011-04-08 22:05:33 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-04-08 22:05:33 -0400 |
| commit | 5de5904af6dd97339a70630002d64c901b008c98 (patch) | |
| tree | e9c01a2bd38587226745043b47106de1ac5efb84 /src/mailman/model/user.py | |
| parent | 0a58c7a9f2fe97665fba102eea9287b28575de5c (diff) | |
| parent | 25b407e24fe21dc46a4f9efa77734d55e0ed4bdd (diff) | |
| download | mailman-5de5904af6dd97339a70630002d64c901b008c98.tar.gz mailman-5de5904af6dd97339a70630002d64c901b008c98.tar.zst mailman-5de5904af6dd97339a70630002d64c901b008c98.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 39f4fa240..f0048c5f4 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() |
