You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that Canvas ignores the quiz description and question titles when importing the QTI file generated by text2qti. This is also mentioned in your README file. After investigating, I found that the issue might be caused by an identifier mismatch problem in the generated assessment_meta.xml. The root cause of the problem is in the qti.py, when instantiate the assessment_meta and assessment. Simply change the following lines will fix the issue:
line 39 in qti.py: From: assignment_identifier=self.assessment_identifier, To: assignment_identifier=self. assignment_identifier,
line 49 in qti.py: From: assessment_identifier=self.assignment_identifier, To: assessment_identifier=self. assessment_identifier,
The text was updated successfully, but these errors were encountered:
Hello @gpoore ,
I notice that Canvas ignores the quiz description and question titles when importing the QTI file generated by text2qti. This is also mentioned in your README file. After investigating, I found that the issue might be caused by an identifier mismatch problem in the generated
assessment_meta.xml
. The root cause of the problem is in theqti.py
, when instantiate theassessment_meta
andassessment
. Simply change the following lines will fix the issue:line 39 in
qti.py
:From:
assignment_identifier=self.assessment_identifier,
To:
assignment_identifier=self. assignment_identifier,
line 49 in
qti.py
:From:
assessment_identifier=self.assignment_identifier,
To:
assessment_identifier=self. assessment_identifier,
The text was updated successfully, but these errors were encountered: