From 8c298197cd1f58d98387191583344612ba553404 Mon Sep 17 00:00:00 2001 From: i-to-z Date: Fri, 17 Nov 2023 17:24:45 -0800 Subject: [PATCH] Fixed one loging.warning(...) --- python/web/src/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/web/src/web.py b/python/web/src/web.py index 045a78f6..ce4a2735 100644 --- a/python/web/src/web.py +++ b/python/web/src/web.py @@ -949,11 +949,11 @@ def download_to_iso(): # resource fork attributes, see more at https://linux.die.net/man/1/genisoimage iso_args = ["-hfs", "-map", str(genisoimage_hfs_resource_fork_map_file_path)] logging.info( - "Found and using genisoimage hfs map file at %s .", + "Found and using the genisoimage hfs map file at %s .", str(genisoimage_hfs_resource_fork_map_file_path)) else: logging.warning( - "Genisoimage hfs map file %s is not present at %s. " + "The genisoimage hfs map file is not present at %s. " "Will not set resource fork attributes of files in the iso image!", str(genisoimage_hfs_resource_fork_map_file_path), )