Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix assignment/assessment identifier mismatch issue #19

Closed
wants to merge 3 commits into from

Conversation

substance9
Copy link

@substance9 substance9 commented Jul 27, 2020

#18
There is an identifier mismatch problem in the generated assessment_meta.xml, which will lead to an issue that Canvas ignores the quiz description, quiz options, and questions titles. The root cause of the problem is in the qti.py, when instantiating 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,

@JeffFessler
Copy link

JeffFessler commented Aug 18, 2020

@substance9 I am thrilled about the possibility of getting question titles working - and it does!
But I am confused about the PR itself because there are 100s of changed lines of code
whereas the PR describes only a couple very small changes.
Perhaps the PR may be more likely to be accepted if it focuses on just one issue at a time.

@gpoore gpoore added the bug Something isn't working label Aug 23, 2020
@gpoore gpoore closed this in d2836f2 Aug 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants