From 087647dc88449417d8c3855a12bd458ebd8d1798 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Fri, 24 Jun 2011 22:14:54 -0700 Subject: [PATCH] fixed spelling of _sendfile --- gunicorn/http/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/http/wsgi.py b/gunicorn/http/wsgi.py index 150b7d1c..a25ee31b 100644 --- a/gunicorn/http/wsgi.py +++ b/gunicorn/http/wsgi.py @@ -17,7 +17,7 @@ try: from os import sendfile except ImportError: try: - from _senfile import sendfile + from _sendfile import sendfile except ImportError: sendfile = None