Explorar o código

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

Philipp Hagemeister %!s(int64=12) %!d(string=hai) anos
pai
achega
c70446c7df
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube_dl/FileDownloader.py

+ 1 - 1
youtube_dl/FileDownloader.py

@@ -121,7 +121,7 @@ class FileDownloader(object):
             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)