mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Fix typo in UserHistoryEvent.__repr
This commit is contained in:
parent
d5ec64f9a8
commit
a4be2cdcef
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue