diff options
author | Magnus Hagander | 2024-08-05 08:15:36 +0000 |
---|---|---|
committer | Magnus Hagander | 2024-08-05 08:15:36 +0000 |
commit | a4afd274e807ca417f295c5026d7ab61178cf668 (patch) | |
tree | 6298a1291db3bddcae89e80f5399847554ec2949 | |
parent | 9f12a5e83f135c106f200565a427c0e13ae474af (diff) |
Add missing newline, breaking pycodestyle
-rw-r--r-- | pgcommitfest/commitfest/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index 0dcdb88..c6451e7 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -258,6 +258,7 @@ def global_search(request): 'title': 'Patch search results', }) + def patch_redirect(request, patchid): last_commitfest = PatchOnCommitFest.objects.select_related('commitfest').filter(patch_id=patchid).order_by('-commitfest__startdate').first() if not last_commitfest: |