mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Use standard unit symbols in format_bytes
This commit is contained in:
parent
41a6eb949a
commit
b0936ef423
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ def format_bytes(bytes):
|
|||
exponent = 0
|
||||
else:
|
||||
exponent = int(math.log(bytes, 1024.0))
|
||||
suffix = 'bkMGTPEZY'[exponent]
|
||||
suffix = ['B','KiB','MiB','GiB','TiB','PiB','EiB','ZiB','YiB'][exponent]
|
||||
converted = float(bytes) / float(1024 ** exponent)
|
||||
return '%.2f%s' % (converted, suffix)
|
||||
|
||||
|
|
Loading…
Reference in a new issue