From ff305e5a8c6fe29d56cbb38ca50166aa9884c8a4 Mon Sep 17 00:00:00 2001 From: Erin Mullaney <erin.mullaney@torchbox.com> Date: Thu, 21 Feb 2019 11:24:53 -0500 Subject: [PATCH] #962 don't have to check that external reviewers have left an opinion because they can't --- opentech/apply/review/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/apply/review/views.py b/opentech/apply/review/views.py index 58a2ef3d3..0f7e0c46d 100644 --- a/opentech/apply/review/views.py +++ b/opentech/apply/review/views.py @@ -54,7 +54,7 @@ class ReviewContextMixin: else: if review: key = 'external_reviewed' - elif review not in opinion_authors: + else: key = 'external_not_reviewed' if key: # Do not add this reviewer to any list if they haven't reviewed but have left an opinion review_info_dict = { -- GitLab