integrity: typo in error message

This commit is contained in:
Romain Bazile 2020-12-15 16:08:15 +01:00
parent 606470c99c
commit 87fb866942

View file

@ -109,7 +109,7 @@ def append_to_integrity_file(filepath):
"""
# Append to the integrity file the specific file
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
integrity_file_path = os.path.join(os.path.dirname(filepath), integrity_file_name)