mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
Minor bug fix
This commit is contained in:
parent
33980adaef
commit
2170e64ca5
|
@ -728,7 +728,11 @@ def dataToStdout(data, forceOutput=False, bold=False):
|
||||||
|
|
||||||
message = stdoutencode(data)
|
message = stdoutencode(data)
|
||||||
sys.stdout.write(setColor(message, bold))
|
sys.stdout.write(setColor(message, bold))
|
||||||
sys.stdout.flush()
|
|
||||||
|
try:
|
||||||
|
sys.stdout.flush()
|
||||||
|
except IOError:
|
||||||
|
pass
|
||||||
|
|
||||||
if kb.get("multiThreadMode"):
|
if kb.get("multiThreadMode"):
|
||||||
logging._releaseLock()
|
logging._releaseLock()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user