Skip to content

Commit f0f6ebc

Browse files
committed
minor fix for stats
1 parent abfff8c commit f0f6ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgcommitfest/commitfest/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def me(request):
9595
INNER JOIN commitfest_patch p ON p.id = poc.patch_id
9696
INNER JOIN commitfest_patchstatus ps ON ps.status=poc.status
9797
WHERE
98-
ps.status NOT IN ( %(patch_stat_committed)s, %(patch_stat_rejected)s, %(patch_stat_withdrawn)s )
98+
ps.status NOT IN ( %(patch_stat_committed)s, %(patch_stat_rejected)s, %(patch_stat_withdrawn)s, %(patch_stat_nextcf)s )
9999
AND (
100100
EXISTS (
101101
SELECT 1 FROM commitfest_patch_reviewers cpr WHERE cpr.patch_id=p.id AND cpr.user_id=%(user_id)s

0 commit comments

Comments
 (0)