From 64d22684639fdd917d6b13c352097d7ebc474809 Mon Sep 17 00:00:00 2001 From: Replit user <> Date: Thu, 14 Dec 2023 00:46:09 +0000 Subject: [PATCH] cleanup --- src/poetry/installation/wheel_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poetry/installation/wheel_installer.py b/src/poetry/installation/wheel_installer.py index 73836f56818..b3a5149b990 100644 --- a/src/poetry/installation/wheel_installer.py +++ b/src/poetry/installation/wheel_installer.py @@ -26,7 +26,7 @@ from poetry.utils.env import Env -shebang = b"#!" + '/usr/bin/env python'.encode("utf-8") +shebang = '#!/usr/bin/env python'.encode("utf-8") def _build_shebang(executable: str, forlauncher: bool) -> bytes: return shebang