Skip to content

Commit

Permalink
Change Windows venv lib scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham authored and pull[bot] committed Oct 19, 2023
1 parent ac5bbf3 commit 1498803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/wpt/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def activate(self):
if "venv" in schemes:
scheme = "venv"
else:
scheme = "nt_user" if os.name == "nt" else "posix_user"
scheme = "nt" if os.name == "nt" else "posix_user"
sys_paths = sysconfig.get_paths(scheme)
data_path = sys_paths["data"]
added = set()
Expand Down

0 comments on commit 1498803

Please sign in to comment.