Pārlūkot izejas kodu

Merge branch 'master' of github.com:rg3/youtube-dl

Philipp Hagemeister 12 gadi atpakaļ
vecāks
revīzija
c70446c7df
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      youtube_dl/FileDownloader.py

+ 1 - 1
youtube_dl/FileDownloader.py

@@ -121,7 +121,7 @@ class FileDownloader(object):
             exponent = 0
             exponent = 0
         else:
         else:
             exponent = int(math.log(bytes, 1024.0))
             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)
         converted = float(bytes) / float(1024 ** exponent)
         return '%.2f%s' % (converted, suffix)
         return '%.2f%s' % (converted, suffix)