integrity: typo in error message
This commit is contained in:
parent
606470c99c
commit
87fb866942
|
@ -109,7 +109,7 @@ def append_to_integrity_file(filepath):
|
||||||
"""
|
"""
|
||||||
# Append to the integrity file the specific file
|
# Append to the integrity file the specific file
|
||||||
if not os.path.exists(filepath):
|
if not os.path.exists(filepath):
|
||||||
logger.error(f"The file {filename} does not exists!")
|
logger.error(f"The file at {filepath} does not exists!")
|
||||||
raise FileNotFoundError
|
raise FileNotFoundError
|
||||||
|
|
||||||
integrity_file_path = os.path.join(os.path.dirname(filepath), integrity_file_name)
|
integrity_file_path = os.path.join(os.path.dirname(filepath), integrity_file_name)
|
||||||
|
|
Loading…
Reference in a new issue