mirror of
https://github.com/Hopiu/django.git
synced 2026-05-22 14:02:02 +00:00
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:
parent
0fb270a0dc
commit
954050c196
1 changed files with 0 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue