Skip to content

Commit 1d3df71

Browse files
committed
Fix error view
1 parent 13267d3 commit 1d3df71

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bolt/views/errors.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ def __init__(self, status_code=None) -> None:
1515
def get_template_names(self) -> list[str]:
1616
return [f"{self.status_code}.html", "error.html"]
1717

18+
def get_request_handler(self):
19+
return self.get # All methods (post, patch, etc.) will use the get()
20+
1821
def get_response(self) -> HttpResponseBase:
19-
response = super().get() # All methods (post, patch, etc.) will use the get()
22+
response = super().get_response()
23+
# Set the status code we want
2024
response.status_code = self.status_code
2125
return response

0 commit comments

Comments
 (0)