Skip to content

Commit

Permalink
Clarify concurrent.futures requirement error message
Browse files Browse the repository at this point in the history
Specify which PyPI package needs to be installed in order for the gthread
worker implementation to work on Python < 3.2.
  • Loading branch information
malept authored and berkerpeksag committed Dec 8, 2014
1 parent 44b090f commit e63df69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gunicorn/workers/gthread.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e63df69

Please sign in to comment.