From b895514db4f46ae07aedad773decf4400b7c17fa Mon Sep 17 00:00:00 2001 From: Lilachn91 Date: Wed, 25 Oct 2023 15:14:11 +0300 Subject: [PATCH] Fixed error message for rate calculation when sp file is missing --- arc/statmech/arkane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arc/statmech/arkane.py b/arc/statmech/arkane.py index 6cf04dee26..26c1e2aa1a 100644 --- a/arc/statmech/arkane.py +++ b/arc/statmech/arkane.py @@ -540,7 +540,7 @@ def generate_arkane_species_file(self, if not os.path.isfile(freq_path): return_none_text = f'the freq file in path {freq_path}' if not os.path.isfile(sp_path): - return_none_text = f'the freq file in path {sp_path}' + return_none_text = f'the sp file in path {sp_path}' if return_none_text is not None: logger.error(f'Could not find {return_none_text} for species {species.label}. Not calculating properties.') return None