Change to format string

This commit is contained in:
Daniel_I_Am 2021-12-27 16:41:21 +01:00
parent c959f14172
commit 546f8f202d

2
run.py
View File

@ -130,7 +130,7 @@ def create_symlink(source, destination):
return return
if not args.force: 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 return
dryrun_safe_remove(destination) dryrun_safe_remove(destination)