diff --git a/eventlet/api.py b/eventlet/api.py index a2f2c68..deb0a47 100644 --- a/eventlet/api.py +++ b/eventlet/api.py @@ -354,6 +354,10 @@ def get_default_hub(): """Select the default hub implementation based on what multiplexing libraries are installed. Tries libevent first, then poll, then select. """ + + from eventlet.hubs import twistedreactor + return twistedreactor + try: import eventlet.hubs.libevent return eventlet.hubs.libevent