Skip to content

Commit

Permalink
fix typo catched by pyflakes
Browse files Browse the repository at this point in the history
  • Loading branch information
denis authored and benoitc committed May 11, 2011
1 parent 2ab4bbf commit 70b962e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gunicorn/http/_sendfile.py
Expand Up @@ -61,6 +61,6 @@ def sendfile(fdout, fdin, offset, nbytes):
_offset = ctypes.c_uint64(offset)
sent = _sendfile(fdout, fdin, _offset, nbytes)
if sent == -1:
e = ctypess.get_errno()
e = ctypes.get_errno()
raise OSError(e, os.strerror(e))
return sent

0 comments on commit 70b962e

Please sign in to comment.