Skip to content

Commit

Permalink
Fix wsgi
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTravisB committed Oct 5, 2013
1 parent 30d1541 commit e7ed9d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tornado/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,10 @@ def __init__(self, environ):
# Parse request body
self.files = {}
httputil.parse_body_arguments(self.headers.get("Content-Type", ""),
self.body, self.arguments, self.files)
self.body, self.body_arguments, self.files)

for k, v in self.body_arguments.iteritems():
self.arguments.setdefault(k, []).extend(v)

self._start_time = time.time()
self._finish_time = None
Expand Down

0 comments on commit e7ed9d3

Please sign in to comment.