SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 811f44da authored by George Katsikas's avatar George Katsikas :goat:
Browse files

fix broken referee name in required actions

parent 69e33593
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ class BaseAction:
count=len(self._objects),
object=obj.__class__.__name__,
author=obj.author.formal_str if getattr(obj, "author", None) else "",
referee=getattr(obj, "referee_str", ""),
referee=obj.referee.full_name if getattr(obj, "referee", None) else "",
days=timedelta.days,
deadline=deadline.days if deadline else "-",
deadline_min=-deadline.days if deadline else "-",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment