Compare commits

...

1 Commits

Author SHA1 Message Date
ed
7b2a4a3d59 v0.5.2 2020-08-18 18:22:23 +00:00
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])