From 40f936c053ae7cc05b2d5c14342c30d10d3fdf35 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Fri, 24 Mar 2017 17:43:00 -0400 Subject: [PATCH] Fix logger statement in new auth code --- auth/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/decorators.py b/auth/decorators.py index a7cea12a2..19b2671d5 100644 --- a/auth/decorators.py +++ b/auth/decorators.py @@ -33,7 +33,7 @@ def _auth_decorator(pass_result=False, handlers=None): # Check for a valid result. if result.auth_valid: - logger.debug('Found valid auth result: %s => (%s)', result.tuple()) + logger.debug('Found valid auth result: %s', result.tuple()) # Set the various pieces of the auth context. result.apply_to_context()