8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-02 04:04:06 +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 Hugo Levy-Falk
parent d5ec64f9a8
commit a4be2cdcef

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)