Skip to content

Commit ebac4c0

Browse files
committed
Fix bad merge
1 parent ae166d7 commit ebac4c0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tornado/httputil.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,6 @@ def parse_body_arguments(content_type, body, arguments, files):
233233
that will be updated with the parsed contents.
234234
"""
235235
if content_type.startswith("application/x-www-form-urlencoded"):
236-
uri_arguments = parse_qs_bytes(native_str(body))
237-
for name, values in uri_arguments.items():
238-
values = [v for v in values if v]
239236
uri_arguments = parse_qs_bytes(native_str(body), keep_blank_values=True)
240237
for name, values in uri_arguments.items():
241238
if values:

0 commit comments

Comments
 (0)