We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aed55c commit 82ac046Copy full SHA for 82ac046
playwright/main.py
@@ -146,6 +146,6 @@ def main() -> None:
146
if st.st_mode & stat.S_IEXEC == 0:
147
os.chmod(driver_executable, st.st_mode | stat.S_IEXEC)
148
print("Installing the browsers...")
149
- subprocess.check_call(f"{driver_executable} install", shell=True)
+ subprocess.check_call([str(driver_executable), "install"])
150
151
print("Playwright is now ready for use")
0 commit comments