Skip to content

Commit aff1b2e

Browse files
committed
there is no thread module in Python 3 any more, so need to check for threading
instead
1 parent 99c1fe4 commit aff1b2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/scripts/roundup_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
# "debug" means "none" + no tracker/template cache
9696
MULTIPROCESS_TYPES = ["debug", "none"]
9797
try:
98-
import thread # nosrc: F401
98+
import threading # nosrc: F401
9999
except ImportError:
100100
pass
101101
else:

0 commit comments

Comments
 (0)