Commit 1016af9f authored by Greg Ward's avatar Greg Ward

Oops, call 'os.path.join()'!

parent 7eba1d8b
...@@ -226,7 +226,7 @@ class Install (Command): ...@@ -226,7 +226,7 @@ class Install (Command):
# Otherwise, just tack the "fallback postfix" onto the # Otherwise, just tack the "fallback postfix" onto the
# user-specified prefix. # user-specified prefix.
return apply (os.join, (my_prefix,) + fallback_postfix) return apply (os.path.join, (my_prefix,) + fallback_postfix)
# replace_sys_prefix () # replace_sys_prefix ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment