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