mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Fix redraw of WPT UI output
This commit is contained in:
parent
e16c930f36
commit
359d812ed7
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class GroupingFormatter(base.BaseFormatter):
|
|||
|
||||
try:
|
||||
self.terminal = blessings.Terminal()
|
||||
return self.terminal.clear_eol, self.terminal.move_up
|
||||
return self.terminal.move_up, self.terminal.clear_eol
|
||||
except Exception as exception:
|
||||
sys.stderr.write("GroupingFormatter: Could not get terminal "
|
||||
"control characters: %s\n" % exception)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue