diff --git a/youtube-dl b/youtube-dl index e6f05c173..ef9f33241 100755 Binary files a/youtube-dl and b/youtube-dl differ diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index ca047ba4c..7ad9d9a76 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -306,7 +306,7 @@ class FileDownloader(object): 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)