8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00

Fix typo in UserHistoryEvent.__repr

This commit is contained in:
Jean-Romain Garnier 2020-04-23 14:13:58 +00:00 committed by Gabriel Detraz
parent ab0ce03b81
commit a25637bb35

View file

@ -281,7 +281,7 @@ class UserHistoryEvent:
users.append(User.objects.get(id=uid).pseudo)
except User.DoesNotExist:
# TODO: Find the user's name in the versions?
groups.append("{} ({})".format(_("Deleted"), uid))
users.append("{} ({})".format(_("Deleted"), uid))
return ", ".join(users)