diff --git a/axes/decorators.py b/axes/decorators.py index 0cda982..6ad41c6 100644 --- a/axes/decorators.py +++ b/axes/decorators.py @@ -5,6 +5,7 @@ from axes.helpers import get_lockout_response def axes_dispatch(func): + @wraps(func) def inner(request, *args, **kwargs): if AxesProxyHandler.is_allowed(request): return func(request, *args, **kwargs)