mirror of
https://github.com/ansible/awx.git
synced 2026-02-01 09:38:10 -03:30
show exceptions in plain text, not HTML
This commit is contained in:
8
lib/middleware/exceptions.py
Normal file
8
lib/middleware/exceptions.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import traceback
|
||||
from django.http import HttpResponse
|
||||
|
||||
class ExceptionMiddleware(object):
|
||||
|
||||
def process_exception(self, request, exception):
|
||||
return HttpResponse(traceback.format_exc(exception), content_type="text/plain", status=500)
|
||||
|
||||
Reference in New Issue
Block a user