From ad8d69e4c5447297db535f8ca9d1ac00e85f01e8 Mon Sep 17 00:00:00 2001 From: Mark Nunberg Date: Thu, 2 Aug 2012 17:56:28 -0700 Subject: [PATCH] Use pywsgi.py instead of wsgi (better chunked handling) --- httpbin/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httpbin/runner.py b/httpbin/runner.py index 5dd4bf5..b004e97 100755 --- a/httpbin/runner.py +++ b/httpbin/runner.py @@ -11,7 +11,7 @@ gunicorn. import sys -from gevent.wsgi import WSGIServer +from gevent.pywsgi import WSGIServer from httpbin import app @@ -26,4 +26,4 @@ def main(): http_server.serve_forever() if __name__ == '__main__': - main() \ No newline at end of file + main()