Skip to content

Commit c174259

Browse files
committed
Fix Scripts path
1 parent 8362558 commit c174259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jython_scripts/install_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def _add_to_user_path(self, env_var_name):
319319

320320
paths_to_add_str = [
321321
"%{}%".format(env_var_name),
322-
"%{}\\Scripts%".format(env_var_name)
322+
"%{}%\\Scripts".format(env_var_name)
323323
]
324324

325325
expanded_paths_to_add = [os.path.normpath(os.path.expandvars(p)) for p in paths_to_add_str]

0 commit comments

Comments
 (0)