fixed spelling of _sendfile

This commit is contained in:
Jim Garrison 2011-06-24 22:14:54 -07:00 committed by benoitc
parent 9d65513f33
commit 087647dc88

View File

@ -17,7 +17,7 @@ try:
from os import sendfile
except ImportError:
try:
from _senfile import sendfile
from _sendfile import sendfile
except ImportError:
sendfile = None