Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Aug 18, 2020
1 parent 0265455 commit 7b2a4a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions copyparty/__version__.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion copyparty/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def humansize(sz, terse=False):
if sz < 1024:
break

sz /= 1024
sz /= 1024.

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

Expand Down

0 comments on commit 7b2a4a3

Please sign in to comment.