diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-07-27 17:41:28 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-07-27 17:41:28 +0000 |
| commit | c7fa1fa56f97eaeedbe4ecff9510243452091168 (patch) | |
| tree | 27838f4c11514523af1d2a55d55ca366c0380301 | |
| parent | aaa3cc0ea3a450deda16da5ab235e6ec9d6e16f9 (diff) | |
Fixed #2388 -- login_required decorator now preserves docstring and name of decorated function. Thanks, derekgr@gmail.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3461 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/auth/decorators.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/contrib/auth/decorators.py b/django/contrib/auth/decorators.py index 222c311e9c..6aea45feb5 100644 --- a/django/contrib/auth/decorators.py +++ b/django/contrib/auth/decorators.py @@ -13,6 +13,9 @@ 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, quote(request.get_full_path()))) + _checklogin.__doc__ = view_func.__doc__ + _checklogin.__dict__ = view_func.__dict__ + _checklogin.__name__ = view_func.__name__ return _checklogin return _dec |
