From 05d2ced779ce9da9121c81a5b85455c6f768c927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonel=20C=C3=A2mara?= Date: Sun, 16 Jul 2017 14:27:11 +0100 Subject: [PATCH] remove print that was left from debugging --- gluon/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gluon/http.py b/gluon/http.py index c56e2dc3..539a00fd 100644 --- a/gluon/http.py +++ b/gluon/http.py @@ -119,7 +119,6 @@ class HTTP(Exception): elif v is not None: rheaders.append((k, str(v))) responder(status, rheaders) - print(type(body)) if env.get('request_method', '') == 'HEAD': return [''] elif isinstance(body, (str, bytes, bytearray)):