# HG changeset patch # User neko259 # Date 2014-01-20 13:36:42 # Node ID f618aa60e6941e903881a4505d254555eeaafa74 # Parent b40b7f87b52cc55141ed83f046d2589dd7971dde Minor fix to the archive diff --git a/boards/views/archived_threads.py b/boards/views/archived_threads.py --- a/boards/views/archived_threads.py +++ b/boards/views/archived_threads.py @@ -7,4 +7,4 @@ from boards.views.all_threads import All class ArchiveView(AllThreadsView): def get_threads(self): - return Thread.objects.filter(archived=True) \ No newline at end of file + return Thread.objects.filter(archived=True).order_by('-bump_time')