From: Ben Darnell Date: Thu, 9 Feb 2012 07:38:34 +0000 (-0800) Subject: Fix one last implicit relative import X-Git-Tag: v2.3.0~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=837da79ef936563d8f043b02cb7b53b67b4b4697;p=thirdparty%2Ftornado.git Fix one last implicit relative import --- diff --git a/tornado/ioloop.py b/tornado/ioloop.py index 1f3f9bc27..44627f6c7 100644 --- a/tornado/ioloop.py +++ b/tornado/ioloop.py @@ -633,7 +633,7 @@ elif hasattr(select, "kqueue"): else: try: # Linux systems with our C module installed - import epoll + from tornado import epoll _poll = _EPoll except Exception: # All other systems