Skip to content

Commit db246fd

Browse files
committed
Newlines for smaller diff
1 parent 9d785d9 commit db246fd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,10 @@ def commitfest(request, cfid):
624624
status_filter = "AND poc.status != %(status_moved)s" if cf.draft else ""
625625
curs.execute(
626626
f"SELECT ps.status, ps.statusstring, count(*) FROM commitfest_patchoncommitfest poc INNER JOIN commitfest_patchstatus ps ON ps.status=poc.status WHERE commitfest_id=%(id)s {status_filter} GROUP BY ps.status ORDER BY ps.sortkey",
627-
{"id": cf.id, "status_moved": PatchOnCommitFest.STATUS_MOVED},
627+
{
628+
"id": cf.id,
629+
"status_moved": PatchOnCommitFest.STATUS_MOVED,
630+
},
628631
)
629632
statussummary = curs.fetchall()
630633
statussummary.append([-1, "Total", sum((r[2] for r in statussummary))])

0 commit comments

Comments
 (0)