From 6e9a539d61bd68926218d835086c3e7e9dbb344c Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Fri, 18 Aug 2017 18:25:02 +0200 Subject: [PATCH] Fix typo --- pillar/api/utils/authorization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/api/utils/authorization.py b/pillar/api/utils/authorization.py index 78a23d51..c24cd832 100644 --- a/pillar/api/utils/authorization.py +++ b/pillar/api/utils/authorization.py @@ -302,7 +302,7 @@ def require_login(require_roles=set(), # We don't need to log at a higher level, as this is very common. # Many browsers first try to see whether authentication is needed # at all, before sending the password. - log.debug('Unauthenticated acces to %s attempted.', func) + log.debug('Unauthenticated access to %s attempted.', func) abort(403) if require_roles and not g.current_user.matches_roles(require_roles, require_all):