From: Szabó Antal Date: Sun, 12 Sep 2010 22:24:22 +0000 (+0200) Subject: Fixed win32_support import X-Git-Tag: v1.2.0~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e21608e86cc85defa265323cb8a50e6337d3d41;p=thirdparty%2Ftornado.git Fixed win32_support import --- diff --git a/tornado/httpserver.py b/tornado/httpserver.py index 199c39e99..9d73f3264 100644 --- a/tornado/httpserver.py +++ b/tornado/httpserver.py @@ -32,7 +32,7 @@ try: import fcntl except ImportError: if os.name == 'nt': - import win32_support as fcntl + from tornado import win32_support as fcntl else: raise