summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-06-17 11:53:10 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-06-17 12:17:29 -0400
commitbd4d2bfba420e3b65e1b8d1097fd80318b99a924 (patch)
tree0c17f5ded9e3fec312a5b6c78315d985c2bda8e6
parent453f295510f40e34b6789f0b0230c1ebcaed402d (diff)
downloadcherrypy-git-bd4d2bfba420e3b65e1b8d1097fd80318b99a924.tar.gz
trace fits on one line now
-rw-r--r--cherrypy/lib/auth_digest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cherrypy/lib/auth_digest.py b/cherrypy/lib/auth_digest.py
index 582c19e2..ea35b0b2 100644
--- a/cherrypy/lib/auth_digest.py
+++ b/cherrypy/lib/auth_digest.py
@@ -445,8 +445,7 @@ def digest_auth(realm, get_ha1, key, debug=False, accept_charset='utf-8'):
request.login = auth.username
if debug:
- TRACE('authentication of %s successful' %
- auth.username)
+ TRACE('authentication of %s successful' % auth.username)
def _respond_401(realm, key, accept_charset, debug, **kwargs):