summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-19 01:16:57 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-19 01:16:57 +0000
commit079752fe8865ea68e25a9c2199fce3305d6aea66 (patch)
treed28f35a237ba0708bc05fbbcf1c2eefde99b7fbd
parentf07e5d4f5df5ca9ca3366d7ecc4b01c490c13198 (diff)
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
-rw-r--r--django/core/handlers/base.py2
1 files changed, 1 insertions, 1 deletions
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: