fixes bug in questions ordering

EmailTemplateFixes
matteo.cafarotti 2014-10-08 12:28:08 +02:00
parent 396e91c564
commit b7057b299a
1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ class QuestionSet(models.Model):
def questions(self):
if not hasattr(self, "__qcache"):
self.__qcache = list(Question.objects.filter(questionset=self.id).order_by('number'))
self.__qcache.sort()
return self.__qcache
def next(self):