Skip to content

Commit f8ec412

Browse files
committed
Add missing DESC
1 parent 79d714a commit f8ec412

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,7 @@ def commitfest(request, cfid):
264264
"branch.all_additions + branch.all_deletions NULLS LAST, created"
265265
)
266266
elif sortkey == -6:
267-
orderby_str = (
268-
"branch.all_additions + branch.all_deletions DESC NULLS LAST, created"
269-
)
267+
orderby_str = "branch.all_additions + branch.all_deletions DESC NULLS LAST, created DESC"
270268
else:
271269
orderby_str = "p.id"
272270
sortkey = 0

0 commit comments

Comments
 (0)