Merge "Fix human readable when size is None"

This commit is contained in:
Jenkins
2015-09-28 11:49:14 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -307,8 +307,10 @@ def save_image(data, path):
def make_size_human_readable(size):
suffix = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB']
base = 1024.0
index = 0
if size is None:
size = 0
while size >= base:
index = index + 1
size = size / base