blob: 995d8432c9bc069c0917a0de294bdcad48439396 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import copy
from django.conf import settings
def patch_middleware_message(error):
if settings.MIDDLEWARE is None:
error = copy.copy(error)
error.msg = error.msg.replace('MIDDLEWARE', 'MIDDLEWARE_CLASSES')
return error
|