From 87fb866942142e5b553c64ac4b64200b19600625 Mon Sep 17 00:00:00 2001 From: Romain Bazile Date: Tue, 15 Dec 2020 16:08:15 +0100 Subject: [PATCH] integrity: typo in error message --- scripts/planktoscope/integrity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/planktoscope/integrity.py b/scripts/planktoscope/integrity.py index a02125b..8a83a85 100644 --- a/scripts/planktoscope/integrity.py +++ b/scripts/planktoscope/integrity.py @@ -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)