mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
minor fix
This commit is contained in:
parent
107089c00b
commit
3fc603843e
|
@ -15,12 +15,13 @@ except ImportError, _:
|
||||||
_multiprocessing = None
|
_multiprocessing = None
|
||||||
try:
|
try:
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
_multiprocessing = multiprocessing
|
|
||||||
|
|
||||||
# problems on FreeBSD (Reference: http://www.eggheadcafe.com/microsoft/Python/35880259/multiprocessing-on-freebsd.aspx)
|
# problems on FreeBSD (Reference: http://www.eggheadcafe.com/microsoft/Python/35880259/multiprocessing-on-freebsd.aspx)
|
||||||
queue = _multiprocessing.Queue()
|
_ = multiprocessing.Queue()
|
||||||
except ImportError, _:
|
except ImportError, _:
|
||||||
pass
|
pass
|
||||||
|
else:
|
||||||
|
_multiprocessing = multiprocessing
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
Loading…
Reference in New Issue
Block a user