From 8addbfa0d2a64dd0eb970571a0038368cffe6a26 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 12 Mar 2006 22:41:04 +0000 Subject: [PATCH] magic-removal: Fixed #1494 -- Added missing import to django.contirb.auth.decorators git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2512 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/decorators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/django/contrib/auth/decorators.py b/django/contrib/auth/decorators.py index 045f0a84f7..4b264cf815 100644 --- a/django/contrib/auth/decorators.py +++ b/django/contrib/auth/decorators.py @@ -1,4 +1,5 @@ from django.contrib.auth import LOGIN_URL, REDIRECT_FIELD_NAME +from django.http import HttpResponseRedirect def user_passes_test(test_func, login_url=LOGIN_URL): """ @@ -11,7 +12,7 @@ def user_passes_test(test_func, login_url=LOGIN_URL): if test_func(request.user): return view_func(request, *args, **kwargs) return HttpResponseRedirect('%s?%s=%s' % (login_url, REDIRECT_FIELD_NAME, request.path)) - + return _checklogin return _dec