summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--account.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/account.py b/account.py
index ef70d9d..d29755c 100644
--- a/account.py
+++ b/account.py
@@ -213,8 +213,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):