Fixed one loging.warning(...)

This commit is contained in:
i-to-z 2023-11-17 17:24:45 -08:00
parent 27e27b853c
commit 8c298197cd
1 changed files with 2 additions and 2 deletions

View File

@ -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),
)