Remove sneaky print

This commit is contained in:
Andrew Godwin 2016-02-05 16:47:43 -08:00
parent fa58375a51
commit b7b11cb075

View File

@ -64,8 +64,7 @@ class AsgiRequest(http.HttpRequest):
if self.META.get('CONTENT_LENGTH', None):
try:
self._content_length = int(self.META['CONTENT_LENGTH'])
except (ValueError, TypeError) as e:
print (self.META)
except (ValueError, TypeError):
pass
# Body handling
self._body = message.get("body", b"")