diff --git a/gunicorn/workers/gthread.py b/gunicorn/workers/gthread.py index 09255d6c..d1fa1fbf 100644 --- a/gunicorn/workers/gthread.py +++ b/gunicorn/workers/gthread.py @@ -39,13 +39,7 @@ except ImportError: try: from asyncio import selectors except ImportError: - try: - from trollius import selectors - except ImportError: - raise RuntimeError(""" - You need 'trollius' installed to use this worker with this python - version. - """) + from gunicorn import selectors class TConn(object):