From 837da79ef936563d8f043b02cb7b53b67b4b4697 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 8 Feb 2012 23:38:34 -0800 Subject: [PATCH] Fix one last implicit relative import --- tornado/ioloop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tornado/ioloop.py b/tornado/ioloop.py index 1f3f9bc2..44627f6c 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