From ebac4c0dfad050ba151e29300a8ee50b981f2255 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Thu, 14 Mar 2013 22:44:18 -0400 Subject: [PATCH] Fix bad merge --- tornado/httputil.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tornado/httputil.py b/tornado/httputil.py index f68c7414a..9a614a456 100644 --- a/tornado/httputil.py +++ b/tornado/httputil.py @@ -233,9 +233,6 @@ def parse_body_arguments(content_type, body, arguments, files): that will be updated with the parsed contents. """ if content_type.startswith("application/x-www-form-urlencoded"): - uri_arguments = parse_qs_bytes(native_str(body)) - for name, values in uri_arguments.items(): - values = [v for v in values if v] uri_arguments = parse_qs_bytes(native_str(body), keep_blank_values=True) for name, values in uri_arguments.items(): if values: -- 2.47.3