From e518c1faa1399d22a7e6eb7f5ebf3639e0c6756a Mon Sep 17 00:00:00 2001 From: virusdefender <1670873886@qq.com> Date: Thu, 24 Sep 2015 17:57:51 +0800 Subject: [PATCH] fix typo --- contest/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contest/models.py b/contest/models.py index 3ef7030..7e67204 100644 --- a/contest/models.py +++ b/contest/models.py @@ -125,7 +125,7 @@ class ContestRank(models.Model): raise ValueError("Error submission type") # 这道题以前提交过 - if submission.problem_id in self.problem_info: + if submission.problem_id in self.submission_info: info = self.submission_info[submission.problem_id] # 如果这道题目已经 ac 了就跳过 if info["is_ac"]: