From e9c6c549cb466d226d21083d3279e8e3318ec0ee Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Sat, 14 Sep 2013 10:27:13 -0400 Subject: [PATCH] Remove exploration output --- confluent/httpapi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/confluent/httpapi.py b/confluent/httpapi.py index ee887134..174998e8 100644 --- a/confluent/httpapi.py +++ b/confluent/httpapi.py @@ -92,7 +92,6 @@ def resourcehandler(env, start_response): if 'CONTENT_LENGTH' in env and int(env['CONTENT_LENGTH']) > 0: reqbody = env['wsgi.input'].read(int(env['CONTENT_LENGTH'])) reqtype = env['CONTENT_TYPE'] - print env if authorized['code'] == 401: start_response('401 Authentication Required', [('Content-type', 'text/plain'),