diff options
-rw-r--r-- | scripts/qc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qc.py b/scripts/qc.py index 9937e5b..688147c 100644 --- a/scripts/qc.py +++ b/scripts/qc.py @@ -70,7 +70,7 @@ def main(): argparser = cli_argument_parser() args = argparser.parse_args() if not os.path.exists(args.filepath): - print("The file '{args.filepath}' does not exist.", file=sys.stderr) + print(f"The file '{args.filepath}' does not exist.", file=sys.stderr) return 1 if not os.path.exists(args.strainsfile): |