From 1016af9fa6a97d243cf6aed74370cab9c6b9e5c0 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 19 Aug 1999 20:02:10 +0000 Subject: Oops, call 'os.path.join()'! --- Lib/distutils/command/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- cgit v0.12