1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Added DEBUG_PROPAGATE_EXCEPTIONS setting that helps testing under e.g. twill

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7537 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant
2008-05-16 23:24:36 +00:00
parent 6f76b9f58d
commit 8c9fceebb1
3 changed files with 18 additions and 1 deletions

View File

@@ -115,7 +115,10 @@ class BaseHandler(object):
# Get the exception info now, in case another exception is thrown later.
exc_info = sys.exc_info()
receivers = dispatcher.send(signal=signals.got_request_exception, request=request)
if settings.DEBUG:
if settings.DEBUG_PROPAGATE_EXCEPTIONS:
raise
elif settings.DEBUG:
from django.views import debug
return debug.technical_500_response(request, *exc_info)
else: