From 546f8f202df643d972d70590c3d1ae73c18f7b98 Mon Sep 17 00:00:00 2001 From: Daniel-I-Am Date: Mon, 27 Dec 2021 16:41:21 +0100 Subject: [PATCH] Change to format string --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 4496c43..7e3b300 100755 --- a/run.py +++ b/run.py @@ -130,7 +130,7 @@ def create_symlink(source, destination): return if not args.force: - print('`{destination}` already exists, will not overwrite. Rerun with `-f` to force overwiring existing files.', file=sys.stderr) + print(f'`{destination}` already exists, will not overwrite. Rerun with `-f` to force overwiring existing files.', file=sys.stderr) return dryrun_safe_remove(destination)