This commit is contained in:
ed 2020-08-18 18:22:23 +00:00
parent 0265455cd1
commit 7b2a4a3d59
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 5, 1)
VERSION = (0, 5, 2)
CODENAME = "fuse jelly"
BUILD_DT = (2020, 8, 17)
BUILD_DT = (2020, 8, 18)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -339,7 +339,7 @@ def humansize(sz, terse=False):
if sz < 1024:
break
sz /= 1024
sz /= 1024.
ret = ' '.join([str(sz)[:4].rstrip('.'), unit])