From 079752fe8865ea68e25a9c2199fce3305d6aea66 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 19 Oct 2005 01:16:57 +0000 Subject: [PATCH] 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 --- django/core/handlers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/handlers/base.py b/django/core/handlers/base.py index ecec674d3e..9b541b36db 100644 --- a/django/core/handlers/base.py +++ b/django/core/handlers/base.py @@ -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: