model: fix a bug in Guest.__repr__

This commit is contained in:
Lephe 2021-07-12 17:47:24 +02:00
parent 2d6007ead4
commit b1ca1c4bbc
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Guest(User):
self.name = name
def __repr__(self):
return f'<Guest: {self.username}>'
return f'<Guest: {self.name}>'
class Member(User):