]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Oops, call 'os.path.join()'!
authorGreg Ward <gward@python.net>
Thu, 19 Aug 1999 20:02:10 +0000 (20:02 +0000)
committerGreg Ward <gward@python.net>
Thu, 19 Aug 1999 20:02:10 +0000 (20:02 +0000)
Lib/distutils/command/install.py

index 01ea0052e6c278478aa0998ab69209e74ff8e71b..cf45004f0758f355238365be944edddda1af1e23 100644 (file)
@@ -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 ()