fix installation of zmq IOLoop into tornado

incorrectly overrode the module, rather than the class in the module, which is more reliable.
pull/37/head
MinRK 15 years ago
parent b7ab64f304
commit 5dd7dce0b2

@ -29,7 +29,7 @@ import zmq
# tornado is imported.
from zmq.eventloop import ioloop
import tornado.ioloop
tornado.ioloop = ioloop
tornado.ioloop.IOLoop = ioloop.IOLoop
from tornado import httpserver
from tornado import web

Loading…
Cancel
Save