We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad77dd commit 9d996c0Copy full SHA for 9d996c0
1 file changed
lib/utils/hash.py
@@ -16,7 +16,10 @@
16
try:
17
import multiprocessing
18
_multiprocessing = multiprocessing
19
-except ImportError, _: # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
+
20
+ # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
21
+ import multiprocessing.queues
22
+except ImportError, _:
23
pass
24
25
import os
0 commit comments