]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix one last implicit relative import
authorBen Darnell <ben@bendarnell.com>
Thu, 9 Feb 2012 07:38:34 +0000 (23:38 -0800)
committerBen Darnell <ben@bendarnell.com>
Thu, 9 Feb 2012 07:38:34 +0000 (23:38 -0800)
tornado/ioloop.py

index 1f3f9bc2770a8f8a8e9a506b28ea100f519a4af1..44627f6c77d931af6a7982f880a63a30e1c08604 100644 (file)
@@ -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