From 15ead12683b2005d03c75d338bc641bec3c96c9a Mon Sep 17 00:00:00 2001 From: posativ Date: Wed, 24 Oct 2012 20:38:39 +0200 Subject: [PATCH] I can't still remember what ASC and DESC means --- isso/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isso/db.py b/isso/db.py index fe7cac8..3adffb9 100644 --- a/isso/db.py +++ b/isso/db.py @@ -168,7 +168,7 @@ class SQLite(Abstract): def recent(self, mode=7, limit=None): - sql = 'SELECT * FROM comments WHERE (? | mode) = ? ORDER BY created ASC' + sql = 'SELECT * FROM comments WHERE (? | mode) = ? ORDER BY created DESC' args = [mode, mode] if limit: