Browse Source

Forgot to remove \r

rtmp_test
Gino Lisignoli 12 years ago
parent
commit
1528d6642d
2 changed files with 1 additions and 1 deletions
  1. BIN
      youtube-dl
  2. +1
    -1
      youtube_dl/FileDownloader.py

BIN
youtube-dl View File


+ 1
- 1
youtube_dl/FileDownloader.py View File

@ -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)


Loading…
Cancel
Save