Skip to content

Commit 079752f

Browse files
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
1 parent f07e5d4 commit 079752f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/core/handlers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def get_response(self, path, request):
7474
response = middleware_method(request, e)
7575
if response:
7676
return response
77-
raise e
77+
raise
7878

7979
# Complain if the view returned None (a common error).
8080
if response is None:

0 commit comments

Comments
 (0)