Skip to content

Commit 9d996c0

Browse files
committed
another quick fix
1 parent fad77dd commit 9d996c0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/utils/hash.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
try:
1717
import multiprocessing
1818
_multiprocessing = multiprocessing
19-
except ImportError, _: # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
19+
20+
# problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
21+
import multiprocessing.queues
22+
except ImportError, _:
2023
pass
2124

2225
import os

0 commit comments

Comments
 (0)