From ddda57179adcdab4f005efb90bd1d009819529b8 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 24 Jun 2012 21:49:43 +1200 Subject: [PATCH] read_headers now returns an ODictCaseless object. --- libpathod/pathod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpathod/pathod.py b/libpathod/pathod.py index 6fc0d204c..e35769b11 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -21,7 +21,7 @@ class PathodHandler(tcp.BaseHandler): return None method, path, httpversion = http.parse_init_http(line) - headers = odict.ODictCaseless(http.read_headers(self.rfile)) + headers = http.read_headers(self.rfile) content = http.read_http_body_request( self.rfile, self.wfile, headers, httpversion, None )