1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 20:51:10 +02:00

[FileDownloader] use moved format_bytes method

This commit is contained in:
Philipp Hagemeister 2013-11-25 06:17:41 +01:00
parent 31cb6d8fef
commit d0d2b49ab7

View File

@ -289,7 +289,7 @@ def run_rtmpdump(args):
data_len = None
if percent > 0:
data_len = int(downloaded_data_len * 100 / percent)
data_len_str = u'~'+self.format_bytes(data_len)
data_len_str = u'~' + format_bytes(data_len)
self.report_progress(percent, data_len_str, speed, eta)
cursor_in_new_line = False
self._hook_progress({