diff options
author | Frederick Muriuki Muriithi | 2022-05-11 05:22:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-11 05:22:26 +0300 |
commit | fa5fd7d3cef8d6d04860174791bd6e18b1a5c298 (patch) | |
tree | 4773cc57af2f8510b2b13a8eb30d7be623a293e6 /scripts/qc.py | |
parent | 7c3335f7c81a5f30dc1b6f55c5cc858c35f17981 (diff) | |
download | gn-uploader-fa5fd7d3cef8d6d04860174791bd6e18b1a5c298.tar.gz |
Tag string as a python f-string to fix error display bug
Diffstat (limited to 'scripts/qc.py')
-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): |