mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor bug fix
This commit is contained in:
parent
33980adaef
commit
2170e64ca5
1 changed files with 5 additions and 1 deletions
|
|
@ -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 a new issue