8000 Clarify concurrent.futures requirement error message · alex-python/gunicorn@e63df69 · GitHub
[go: up one dir, main page]

Skip to content

Commit e63df69

Browse files
maleptberkerpeksag
authored andcommitted
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.
1 parent 44b090f commit e63df69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gunicorn/workers/gthread.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
import concurrent.futures as futures
3232
except ImportError:
3333
raise RuntimeError("""
34-
You need 'concurrent' installed to use this worker with this python
35-
version.
34+
You need to install the 'futures' package to use this worker with this
35+
Python version.
3636
""")
3737

3838
try:

0 commit comments

Comments
 (0)
0