From d5af4413e9e905e072c1024aded58eecb55d7209 Mon Sep 17 00:00:00 2001 From: Blake DeMarcy Date: Fri, 28 Apr 2017 22:22:58 -0500 Subject: [PATCH] change debug output format --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index ea341d6..bd72615 100644 --- a/server.py +++ b/server.py @@ -46,7 +46,7 @@ def api_method(function): auth = cherrypy.request.headers.get("Auth") if debug: - print("Body: {}\n\n-----------\n{}".format(body, (username, auth))) + print("\n\n\nBody: {}\n\ne----------".format(body)) if (username and not auth) or (auth and not username): raise BBJParameterError("User or Auth was given without the other.")