mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-01-28 11:08:38 +01:00
another quick fix
This commit is contained in:
parent
fad77dd078
commit
9d996c07fb
1 changed files with 4 additions and 1 deletions
|
|
@ -16,7 +16,10 @@ _multiprocessing = None
|
|||
try:
|
||||
import multiprocessing
|
||||
_multiprocessing = multiprocessing
|
||||
except ImportError, _: # problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
|
||||
|
||||
# problems on FreeBSD (Reference: http://www.velocityreviews.com/forums/t716510-freebsd-and-multiprocessing.html)
|
||||
import multiprocessing.queues
|
||||
except ImportError, _:
|
||||
pass
|
||||
|
||||
import os
|
||||
|
|
|
|||
Loading…
Reference in a new issue