summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index 92076ab..68bde48 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -1285,7 +1285,7 @@ class AnswerPaper(models.Model):
return q_a
def get_latest_answer(self, question_id):
- return self.answers.filter(question=question_id).order_by("-id").last()
+ return self.answers.filter(question=question_id).order_by("id").last()
def get_questions(self):
return self.questions.filter(active=True)