Removed bug from [3461] -- __name__ is not assignable

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-28 21:24:19 +00:00
parent 0fb270a0dc
commit 954050c196
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ def user_passes_test(test_func, login_url=LOGIN_URL):
return HttpResponseRedirect('%s?%s=%s' % (login_url, REDIRECT_FIELD_NAME, quote(request.get_full_path())))
_checklogin.__doc__ = view_func.__doc__
_checklogin.__dict__ = view_func.__dict__
_checklogin.__name__ = view_func.__name__
return _checklogin
return _dec