Skip to content
Snippets Groups Projects
Commit 5682e02f authored by Julian Arni's avatar Julian Arni
Browse files

Fix indendation that was causing only first submission to be saved

parent e093431d
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,18 @@ class FolditModule(XModule):
self.required_level,
self.required_sublevel)
showbasic = (self.metadata.get("show_basic_score").lower() == "true")
showleader = (self.metadata.get("show_leaderboard").lower() == "true")
# Wrap these gets around try-except since calling lower() on NoneType
# (e.g. there is no attribute "show_basic_score" to the tag) will raise
# an exception
try:
showbasic = (self.metadata.get("show_basic_score").lower() == "true")
except:
showbasic = False
try:
showleader = (self.metadata.get("show_leaderboard").lower() == "true")
except:
showleader = False
context = {
'due': self.due_str,
'success': self.is_complete(),
......
......@@ -130,7 +130,7 @@ def save_scores(user, puzzle_scores):
current_score=current_score,
best_score=best_score,
score_version=score_version)
obj.save()
obj.save()
score_responses.append({'PuzzleID': puzzle_id,
'Status': 'Success'})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment