We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9f99b commit 845dc63Copy full SHA for 845dc63
pgcommitfest/commitfest/views.py
@@ -250,9 +250,10 @@ def commitfest(request, cfid):
250
'header_activity_link': 'activity/',
251
})
252
253
+
254
def patches_by_messageid(messageid):
255
# First try to find the messageid in our database
- patches = Patch.objects.select_related().filter(mailthread__messageid=messageid).order_by('created',).all()
256
+ patches = Patch.objects.select_related().filter(mailthread__messageid=messageid).order_by('created', ).all()
257
if patches:
258
return patches
259
0 commit comments