I know django 1.4 has functionality to remove Sensible information in error report.I am using django 1.3 and python 2.4.I want to know whether https://docs.djangoproject.com/en/dev/howto/error-reporting/#filtering-error-reports is back portable to django 1.3 and python 2.4.I tried with no success.please help.
I know django 1.4 has functionality to remove Sensible information in error report.I am
Share
I would just copy the sensitive_information decorator to a local decorators.py file, and use it.
usage:
Would need functools.py too, which would not come with python2.4 by default (I guess) -you might have to include that file separately.