From a45f22567d9f772caf17238bebaa2546d50022e9 Mon Sep 17 00:00:00 2001 From: Paul Pinchuk Date: Tue, 18 Jun 2024 18:06:30 -0600 Subject: [PATCH] Fix minor formatting bug in error message --- gaps/batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gaps/batch.py b/gaps/batch.py index 843d4143..7e4534cf 100644 --- a/gaps/batch.py +++ b/gaps/batch.py @@ -339,7 +339,7 @@ def _check_sets(config, base_dir): for fpath in batch_set["files"]: if not Path(fpath).exists(): raise gapsConfigError( - "Could not find file to modify in batch jobs: {fpath!r}" + f"Could not find file to modify in batch jobs: {fpath!r}" ) batch_sets.append(batch_set)