Hotfix answer option full ids
The full IDs of AnswerOption
s did not include the IDs of the QuestionCollection
. The reason was a mismatch in the creation order of AnswerOption
s and Question objects.
Fixing this revealed another bug where the call to super()
during the Question's __init()__
was missing the proper parameters which caused the creation to be aborted, HasID.__del__()
to be called which failed in turn.
Edited by Erxleben, Fredo