Fix status()

This commit is contained in:
Tim Van Baak 2020-01-20 13:13:06 -08:00
parent 0d5fbbc842
commit 79016265d9
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class LexiconModel():
def status(self):
if self.turn.current is None:
return "unstarted"
elif self.turn.current > lex.turn.max:
elif self.turn.current > self.turn.max:
return "completed"
else:
return "ongoing"