Skip to content

Commit 8c760c2

Browse files
Merge pull request #84862 from charles-zablit/charles-zablit/update-checkout/fix-line-cleanup
[update-checkout] fix final line cleanup
2 parents b99ca39 + 820acfc commit 8c760c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update_checkout/update_checkout/parallel_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _monitor(self):
125125

126126
time.sleep(self._monitor_polling_period)
127127

128-
sys.stdout.write("\r" + " " * len(last_output) + "\r\n")
128+
sys.stdout.write("\r" + " " * self._terminal_width + "\r")
129129
sys.stdout.flush()
130130

131131
@staticmethod

0 commit comments

Comments
 (0)