Only use request.body

This commit is contained in:
Channel Cat
2017-01-25 21:56:49 -08:00
parent 85a28d3c30
commit fd118a41fd
2 changed files with 5 additions and 7 deletions

View File

@@ -54,7 +54,7 @@ class Request(dict):
self.query_string = url_parsed.query.decode('utf-8')
# Init but do not inhale
self.body = None
self.body = []
self.parsed_json = None
self.parsed_form = None
self.parsed_files = None