mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-14 07:04:27 -04:00
add space in human readable sizes
This commit is contained in:
parent
56d0b2c088
commit
95a7d3d1de
1 changed files with 2 additions and 2 deletions
|
@ -587,9 +587,9 @@ def get_dir_size(path: str, recursive: bool=True, pattern: Optional[str]=None) -
|
||||||
def human_readable_size(num_bytes: Union[int, float]) -> str:
|
def human_readable_size(num_bytes: Union[int, float]) -> str:
|
||||||
for count in ['Bytes','KB','MB','GB']:
|
for count in ['Bytes','KB','MB','GB']:
|
||||||
if num_bytes > -1024.0 and num_bytes < 1024.0:
|
if num_bytes > -1024.0 and num_bytes < 1024.0:
|
||||||
return '%3.1f%s' % (num_bytes, count)
|
return '%3.1f %s' % (num_bytes, count)
|
||||||
num_bytes /= 1024.0
|
num_bytes /= 1024.0
|
||||||
return '%3.1f%s' % (num_bytes, 'TB')
|
return '%3.1f %s' % (num_bytes, 'TB')
|
||||||
|
|
||||||
|
|
||||||
@enforce_types
|
@enforce_types
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue