瀏覽代碼

Merge pull request #797 from AI0867/patch-1

Use standard unit symbols in format_bytes
Philipp Hagemeister 12 年之前
父節點
當前提交
71f37e90ef
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)