diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-04-01 18:17:09 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-04-01 18:17:09 (GMT) |
commit | 8d1da0f5c3b8c6e3fa29e6ae7f891f699a041bb6 (patch) | |
tree | 358d9d15191ea717dcd05117302d090296a4e9c1 /Lib/distutils/util.py | |
parent | b5023df3d6d46c7a220eb1db0c2db8cbe8a881fc (diff) | |
download | cpython-8d1da0f5c3b8c6e3fa29e6ae7f891f699a041bb6.zip cpython-8d1da0f5c3b8c6e3fa29e6ae7f891f699a041bb6.tar.gz cpython-8d1da0f5c3b8c6e3fa29e6ae7f891f699a041bb6.tar.bz2 |
#7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote.
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r-- | Lib/distutils/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 1a55f70..994dd21 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -206,7 +206,7 @@ def convert_path (pathname): paths.remove('.') if not paths: return os.curdir - return apply(os.path.join, paths) + return os.path.join(*paths) # convert_path () |