SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 472113ee authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Fix stupid bug

parent d8bfb9df
No related branches found
No related tags found
No related merge requests found
...@@ -239,7 +239,7 @@ class BaseCycle: ...@@ -239,7 +239,7 @@ class BaseCycle:
self.add_action(action) self.add_action(action)
# Submission is a resubmission: EIC has to determine which cycle to proceed with. # Submission is a resubmission: EIC has to determine which cycle to proceed with.
comments_to_vet = self._submission.comments.awaiting_vetting().values_list('id') comments_to_vet = self._submission.comments.awaiting_vetting()
for comment in comments_to_vet: for comment in comments_to_vet:
self.add_action(VettingAction(comment)) self.add_action(VettingAction(comment))
......
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