Skip to content

Commit 74efa9f

Browse files
committed
Tweaking
1 parent a95eeee commit 74efa9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def link():
5151
except PermissionError:
5252
sys.exit("\nError: failed to create symlink, operation not permitted.")
5353
else:
54-
sys.exit("Created symlink to {script_name} in {alternate_path}\n".format(script_name=script_name, alternate_path=alternate_path))
54+
sys.exit("\nCreated symlink to {script_name} in {alternate_path}\n".format(script_name=script_name, alternate_path=alternate_path))
5555
else:
5656
sys.exit("\nError: {alternate_path} not found on $PATH, aborting install.\n".format(alternate_path=alternate_path))
5757
else:
@@ -72,7 +72,7 @@ def unlink():
7272
except PermissionError:
7373
sys.exit("\nError: operation not permitted.")
7474
else:
75-
print("Unlinked {script_path_location}\n".format(script_path_location=script_path_location))
75+
print("\nUnlinked {script_path_location}\n".format(script_path_location=script_path_location))
7676
else:
7777
sys.exit("Aborting uninstall.\n")
7878
else:

0 commit comments

Comments
 (0)