From 5ec50718dd88224262cf2bec9c89f0f3f775d805 Mon Sep 17 00:00:00 2001 From: Aaron Date: Sat, 9 Feb 2019 22:03:55 -0600 Subject: [PATCH] fix indentation bug --- backend/grant/email/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/grant/email/views.py b/backend/grant/email/views.py index 2bf712b1..f2e19ebe 100644 --- a/backend/grant/email/views.py +++ b/backend/grant/email/views.py @@ -41,6 +41,7 @@ def accept_arbiter(code, proposal_id): if ap.proposal_id == int(proposal_id): ap.accept_nomination(ev.user.id) return {"message": "You are now the Arbiter"}, 200 - return {"message": "No nomination for this code"}, 404 + + return {"message": "No nomination for this code"}, 404 return {"message": "Invalid email code"}, 400