fix: typo

This commit is contained in:
Markus Unterwaditzer 2018-10-05 16:33:46 +02:00
parent 7c9c783e9d
commit 3673feb256

View File

@ -79,7 +79,7 @@ class ErrorHandler:
response = None
try:
if handler:
response = handler(req, exception)
response = handler(request, exception)
if response is None:
response = self.default(request, exception)
except Exception: