From a5634dea0d4f24d6f27ba5d7e50c773979eec93c Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Thu, 6 Jun 2013 11:02:33 +0200 Subject: fix the py3k part of RequestLogWSGIFilterTest --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 946ee29..cf40b92 100755 --- a/test.py +++ b/test.py @@ -376,7 +376,7 @@ import gzip class RequestLogWSGIFilterTest(unittest.TestCase): def testSimple(self): app = applications.StaticContent("200 Found", - [("Content-Type", "text/plain")], "nothing") + [("Content-Type", "text/plain")], b"nothing") log = io.StringIO() logfilter = filters.RequestLogWSGIFilter.creator(log) app = filters.WSGIFilterMiddleware(app, logfilter) -- cgit v1.2.3