Fixed #641 -- Fixed re-raise in django.core.handlers.base. Thanks, Sune

git-svn-id: http://code.djangoproject.com/svn/django/trunk@949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-10-19 01:16:57 +00:00
parent f07e5d4f5d
commit 079752fe88
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class BaseHandler:
response = middleware_method(request, e)
if response:
return response
raise e
raise
# Complain if the view returned None (a common error).
if response is None: