From e7a281e8667a66961e5ec69f043943987a938237 Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Thu, 21 May 2015 02:11:05 -0700 Subject: [PATCH] sort order got reversed! --- flashcards/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flashcards/models.py b/flashcards/models.py index d74518f..e56633f 100644 --- a/flashcards/models.py +++ b/flashcards/models.py @@ -379,7 +379,7 @@ class Section(Model): def get_feed_for_user(self, user): cards = list(self.get_cards_for_user(user).exclude(userflashcard__user=user)) - cards.sort(key=lambda x: x.score) + cards.sort(key=lambda x: -x.score) return cards def get_cards_for_user(self, user): -- 1.9.1