diff options
author | Greg Ward <gward@python.net> | 1999-08-19 20:02:10 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-08-19 20:02:10 (GMT) |
commit | 1016af9fa6a97d243cf6aed74370cab9c6b9e5c0 (patch) | |
tree | 90ca51fb7636e413ecef23c0157e101059a75f02 | |
parent | 7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e (diff) | |
download | cpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.zip cpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.tar.gz cpython-1016af9fa6a97d243cf6aed74370cab9c6b9e5c0.tar.bz2 |
Oops, call 'os.path.join()'!
-rw-r--r-- | Lib/distutils/command/install.py | 2 |
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 () |