summaryrefslogtreecommitdiffstats
path: root/accounts/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/models.py')
-rw-r--r--accounts/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/accounts/models.py b/accounts/models.py
index 0fdc1f7..6bb4bf4 100644
--- a/accounts/models.py
+++ b/accounts/models.py
@@ -12,10 +12,9 @@ class Account(UserMixin):
"""
_ready = False
- def __init__(self, uid, mail, services=None, dn=None, password=None):
+ def __init__(self, uid, mail, services=None, password=None):
self.uid = uid.encode('utf8') if isinstance(uid, unicode) else uid
self.services = list() if services is None else services
- self.dn = dn
self.password = password.encode('utf8') if isinstance(password, unicode) else password
self.new_password_root = None
self.new_password_services = {}