mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[FileDownloader] use moved format_bytes method
This commit is contained in:
parent
31cb6d8fef
commit
d0d2b49ab7
@ -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({
|
||||
|
Loading…
Reference in New Issue
Block a user