mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-19 05:19:40 +02:00
fix typo
This commit is contained in:
parent
5f105c2a4f
commit
af4ce8df1f
1 changed files with 2 additions and 2 deletions
|
@ -533,11 +533,11 @@ def scan():
|
|||
# Print device information
|
||||
f_size = human_readable_size(statvfs.f_frsize * statvfs.f_blocks)
|
||||
print_size(f_size)
|
||||
logging.info(f'size="{f_size}")
|
||||
logging.info(f'size="{f_size}"')
|
||||
|
||||
f_used = statvfs.f_frsize * (statvfs.f_blocks - statvfs.f_bfree)
|
||||
print_used(human_readable_size(f_used)))
|
||||
logging.info(f'used="{f_used}")
|
||||
logging.info(f'used="{f_used}"')
|
||||
|
||||
# scan device
|
||||
infected_files = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue