# HG changeset patch # User Sergey Kandaurov # Date 1558623522 -10800 # Node ID d23d959713b55c26cc78cca3c3fd0f69fbbaf945 # Parent fc3722dd88629ed56850b9a2f19fff9e606a74a7 Tests: Python 3.7 (PEP 3333) compatibility in uwsgi tests. diff --git a/uwsgi.t b/uwsgi.t --- a/uwsgi.t +++ b/uwsgi.t @@ -61,7 +61,7 @@ EOF def application(env, start_response): start_response('200 OK', [('Content-Type','text/plain')]) - return "SEE-THIS" + return b"SEE-THIS" END