Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e381158 commit fc4be0aCopy full SHA for fc4be0a
1 file changed
lib/core/common.py
@@ -1518,7 +1518,8 @@ def clearConsoleLine(forceOutput=False):
1518
Clears current console line
1519
"""
1520
1521
- dataToStdout("\r%s\r" % (" " * (getConsoleWidth() - 1)), forceOutput)
+ if getattr(LOGGER_HANDLER, "is_tty", False):
1522
+ dataToStdout("\r%s\r" % (" " * (getConsoleWidth() - 1)), forceOutput)
1523
1524
kb.prependFlag = False
1525
kb.stickyLevel = None
0 commit comments