Skip to content

Commit 7b2a4a3

Browse files
committed
v0.5.2
1 parent 0265455 commit 7b2a4a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

copyparty/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
22

3-
VERSION = (0, 5, 1)
3+
VERSION = (0, 5, 2)
44
CODENAME = "fuse jelly"
5-
BUILD_DT = (2020, 8, 17)
5+
BUILD_DT = (2020, 8, 18)
66

77
S_VERSION = ".".join(map(str, VERSION))
88
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

copyparty/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def humansize(sz, terse=False):
339339
if sz < 1024:
340340
break
341341

342-
sz /= 1024
342+
sz /= 1024.
343343

344344
ret = ' '.join([str(sz)[:4].rstrip('.'), unit])
345345

0 commit comments

Comments
 (0)