From af4ce8df1f6d321e5e7a8a8a8d1c311fc60b5dec Mon Sep 17 00:00:00 2001 From: didier Date: Wed, 16 Apr 2025 16:57:49 +0200 Subject: [PATCH] fix typo --- pandora-box.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora-box.py b/pandora-box.py index 8d3649b..dacda2e 100755 --- a/pandora-box.py +++ b/pandora-box.py @@ -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 = []