From: Greg Ward Date: Thu, 19 Aug 1999 20:02:10 +0000 (+0000) Subject: Oops, call 'os.path.join()'! X-Git-Tag: v1.6a1~994 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1016af9fa6a97d243cf6aed74370cab9c6b9e5c0;p=thirdparty%2FPython%2Fcpython.git Oops, call 'os.path.join()'! --- diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 01ea0052e6c2..cf45004f0758 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 ()