Skip to content

Commit c425be9

Browse files
committed
report_outcome: deal with attempts with no SCORM elements
1 parent 53afc48 commit c425be9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

numbas_lti/report_outcome.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ def report_outcome_lti_13(resource, user_data):
7979
if attempt.end_time is not None:
8080
time = attempt.end_time
8181
else:
82-
time = attempt.scormelements.first().time
82+
time_element = attempt.scormelements.first()
83+
time = time_element.time if time_element is not None else None
8384

8485
activity_progress = {
8586
'not attempted': 'Initialized',

0 commit comments

Comments
 (0)