mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Forgot to remove \r
This commit is contained in:
parent
7311fef854
commit
1528d6642d
2 changed files with 1 additions and 1 deletions
BIN
youtube-dl
BIN
youtube-dl
Binary file not shown.
|
@ -306,7 +306,7 @@ def report_progress(self, percent_str, data_len_str, speed_str, eta_str):
|
|||
if self.params.get('noprogress', False):
|
||||
return
|
||||
if self.params.get('newline', True):
|
||||
self.to_screen(u'\r[download] %s of %s at %s ETA %s' %
|
||||
self.to_screen(u'[download] %s of %s at %s ETA %s' %
|
||||
(percent_str, data_len_str, speed_str, eta_str))
|
||||
else: self.to_screen(u'\r[download] %s of %s at %s ETA %s' %
|
||||
(percent_str, data_len_str, speed_str, eta_str), skip_eol=True)
|
||||
|
|
Loading…
Reference in a new issue