1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-19 13:29:42 +02:00
This commit is contained in:
didier 2025-04-16 16:57:49 +02:00
parent 5f105c2a4f
commit af4ce8df1f

View file

@ -533,11 +533,11 @@ def scan():
# Print device information # Print device information
f_size = human_readable_size(statvfs.f_frsize * statvfs.f_blocks) f_size = human_readable_size(statvfs.f_frsize * statvfs.f_blocks)
print_size(f_size) 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) f_used = statvfs.f_frsize * (statvfs.f_blocks - statvfs.f_bfree)
print_used(human_readable_size(f_used))) print_used(human_readable_size(f_used)))
logging.info(f'used="{f_used}") logging.info(f'used="{f_used}"')
# scan device # scan device
infected_files = [] infected_files = []