summaryrefslogtreecommitdiffstats
path: root/accounts/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/models.py')
-rw-r--r--accounts/models.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/accounts/models.py b/accounts/models.py
index 6bb4bf4..8f1b541 100644
--- a/accounts/models.py
+++ b/accounts/models.py
@@ -86,7 +86,9 @@ class Service(object):
self.id = service_id
self.name = name
self.url = url
- self.changed = None # used by settings view
+
+ #: Wether the user has a separate password for this service.
+ self.changed = False
def __repr__(self):
return '<Service %s>' % self.id