Skip to content

Commit 6657d4a

Browse files
committed
Update error message
1 parent 9469813 commit 6657d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang_tools/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def move_and_chmod_bin(old_bin_name, new_bin_name, directory) -> None:
8888
os.chmod(os.path.join(install_dir, new_bin_name), 0o755)
8989
except PermissionError:
9090
raise SystemExit(
91-
f"""Don't have permission to install {new_bin_name} to {install_dir}.
92-
Try to run with the appropriate permissions."""
91+
f"Don't have permission to install {new_bin_name} to {install_dir}."
92+
+ " Try to run with the appropriate permissions."
9393
)
9494

9595

0 commit comments

Comments
 (0)