From ce7115dc488774128198ad0c98139a4126293fe8 Mon Sep 17 00:00:00 2001 From: Fredrik Jonsson <frjo@xdeb.org> Date: Tue, 4 Jun 2019 20:39:51 +0200 Subject: [PATCH] Fix AttributeError: User object has no attribute author. --- opentech/apply/funds/models/submissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentech/apply/funds/models/submissions.py b/opentech/apply/funds/models/submissions.py index 1305c8d03..8543f23fe 100644 --- a/opentech/apply/funds/models/submissions.py +++ b/opentech/apply/funds/models/submissions.py @@ -858,7 +858,7 @@ class AssignedReviewersQuerySet(models.QuerySet): groups = {PARTNER_GROUP_NAME} elif COMMUNITY_REVIEWER_GROUP_NAME in groups: groups = {COMMUNITY_REVIEWER_GROUP_NAME} - elif reviewer.author.is_apply_staff: + elif reviewer.is_apply_staff: groups = {STAFF_GROUP_NAME} else: groups = {REVIEWER_GROUP_NAME} -- GitLab