summaryrefslogtreecommitdiff
path: root/src/mailman/model/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/model/user.py')
-rw-r--r--src/mailman/model/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/model/user.py b/src/mailman/model/user.py
index 5fe61ddd4..ab581fdc8 100644
--- a/src/mailman/model/user.py
+++ b/src/mailman/model/user.py
@@ -56,7 +56,7 @@ class User(Model):
id = Column(Integer, primary_key=True)
display_name = Column(Unicode)
- _password = Column('password', LargeBinary) # TODO : was RawStr()
+ _password = Column('password', LargeBinary)
_user_id = Column(UUID, index=True)
_created_on = Column(DateTime)
@@ -68,7 +68,7 @@ class User(Model):
Integer,
ForeignKey('address.id', use_alter=True,
name='_preferred_address',
- ondelete="SET NULL"))
+ ondelete='SET NULL'))
_preferred_address = relationship(
'Address', primaryjoin=(_preferred_address_id==Address.id),