summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-08-19 20:02:10 (GMT)
committerGreg Ward <gward@python.net>1999-08-19 20:02:10 (GMT)
commit1016af9fa6a97d243cf6aed74370cab9c6b9e5c0 (patch)
tree90ca51fb7636e413ecef23c0157e101059a75f02
parent7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e (diff)
downloadcpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.zip
cpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.tar.gz
cpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.tar.bz2
Oops, call 'os.path.join()'!
-rw-r--r--Lib/distutils/command/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 01ea005..cf45004 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -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 ()