Skip to content

Commit 9f491c0

Browse files
authored
fix(lang): use new env variable to define default codegen (microsoft#230)
1 parent fc0e796 commit 9f491c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@ async def __aexit__(self, *args: Any) -> None:
131131
def main() -> None:
132132
driver_executable = compute_driver_executable()
133133
my_env = os.environ.copy()
134-
my_env["PLAYWRIGHT_CLI_TARGET_LANG"] = "python"
134+
my_env["PW_CLI_TARGET_LANG"] = "python"
135135
subprocess.run([str(driver_executable), *sys.argv[1:]], env=my_env)

0 commit comments

Comments
 (0)