commit | 1016af9fa6a97d243cf6aed74370cab9c6b9e5c0 | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Thu Aug 19 20:02:10 1999 +0000 |
committer | Greg Ward <gward@python.net> | Thu Aug 19 20:02:10 1999 +0000 |
tree | 90ca51fb7636e413ecef23c0157e101059a75f02 | |
parent | 7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e [diff] [blame] |
Oops, call 'os.path.join()'!
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 @@ # 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 ()