From 01a4f9af25d6d90533a8d6038f607e1562ac5950 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Mon, 7 Aug 2017 15:37:10 -0400 Subject: [PATCH] Set override to None on init_from_structure --- lms/djangoapps/grades/new/subsection_grade.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/djangoapps/grades/new/subsection_grade.py b/lms/djangoapps/grades/new/subsection_grade.py index 4408b9ce3a..f0d30d5858 100644 --- a/lms/djangoapps/grades/new/subsection_grade.py +++ b/lms/djangoapps/grades/new/subsection_grade.py @@ -108,6 +108,7 @@ class SubsectionGrade(SubsectionGradeBase): self._compute_block_score(descendant_key, course_structure, submissions_scores, csm_scores) self.all_total, self.graded_total = graders.aggregate_scores(self.problem_scores.values()) + self.override = None self._log_event(log.debug, u"init_from_structure", student) return self