summaryrefslogtreecommitdiffstats
path: root/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'account.py')
-rw-r--r--account.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/account.py b/account.py
index 2377315..49051ed 100644
--- a/account.py
+++ b/account.py
@@ -212,8 +212,8 @@ class Account:
self.new_password_services = {}
- def __str__(self):
- return "Account(uid=%s)" % self.uid
+ def __repr__(self):
+ return "<Account uid=%s>" % self.uid
def change_password(self, new_password, service = None):