From e63df69229e4eb4059e3fa9e6075fa2f64ed968c Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Sun, 7 Dec 2014 14:09:03 -0800 Subject: [PATCH] Clarify concurrent.futures requirement error message Specify which PyPI package needs to be installed in order for the gthread worker implementation to work on Python < 3.2. --- gunicorn/workers/gthread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn/workers/gthread.py b/gunicorn/workers/gthread.py index 3a91cd33e..71078c5ae 100644 --- a/gunicorn/workers/gthread.py +++ b/gunicorn/workers/gthread.py @@ -31,8 +31,8 @@ import concurrent.futures as futures except ImportError: raise RuntimeError(""" - You need 'concurrent' installed to use this worker with this python - version. + You need to install the 'futures' package to use this worker with this + Python version. """) try: