mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor fix
This commit is contained in:
parent
e381158058
commit
fc4be0a77c
1 changed files with 2 additions and 1 deletions
|
|
@ -1518,7 +1518,8 @@ def clearConsoleLine(forceOutput=False):
|
||||||
Clears current console line
|
Clears current console line
|
||||||
"""
|
"""
|
||||||
|
|
||||||
dataToStdout("\r%s\r" % (" " * (getConsoleWidth() - 1)), forceOutput)
|
if getattr(LOGGER_HANDLER, "is_tty", False):
|
||||||
|
dataToStdout("\r%s\r" % (" " * (getConsoleWidth() - 1)), forceOutput)
|
||||||
|
|
||||||
kb.prependFlag = False
|
kb.prependFlag = False
|
||||||
kb.stickyLevel = None
|
kb.stickyLevel = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue