Qualcuno può dirmi il motivo reale dietro l'avviso che sto ricevendo in questo middleware Django e come posso risolverlo?DeprecationWarning: BaseException.message è stato dichiarato obsoleto a partire dall'eccezione Python 2.6 .__ class__, exception.message,
sto ottenendo questo messaggio "DeprecationWarning: BaseException.message è stata deprecata come di Python 2.6 eccezione classe, exception.message,".
class GeneralMiddleware(object):
def process_exception(self, request, exception):
if exception.__class__ is SandboxError:
# someone is trying to access a sandbox that he has no
# permission to
return HttpResponseRedirect("/notpermitted/")
exc_type, value, tb = sys.exc_info()
data = traceback.format_tb(
tb, None) + traceback.format_exception_only(
exc_type, value)
msg = (
"Failure when calling method:\n"
u"URL:'%s'\nMethod:'%s'\nException Type:'%s'\n"
u"Error Message '%s'\nFull Message:\n%s"
% (request.get_full_path(), request.method,
exception.__class__, exception.message,
Provare 'isinstance (eccezione, SandboxError)' invece di 'exception .__ class__ è SandboxError'. – Blender
Non funziona per me frullatore ... grazie per la vostra risposta veloce. In realtà sto ricevendo l'avviso su exception .__ class__, exception.message this line. – PythonDev