mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Oops, call 'os.path.join()'!
This commit is contained in:
parent
7eba1d8bbe
commit
1016af9fa6
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ class Install (Command):
|
|||
# Otherwise, just tack the "fallback postfix" onto the
|
||||
# user-specified prefix.
|
||||
|
||||
return apply (os.join, (my_prefix,) + fallback_postfix)
|
||||
return apply (os.path.join, (my_prefix,) + fallback_postfix)
|
||||
|
||||
# replace_sys_prefix ()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue