commit | 8d1da0f5c3b8c6e3fa29e6ae7f891f699a041bb6 | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Thu Apr 01 18:17:09 2010 +0000 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Thu Apr 01 18:17:09 2010 +0000 |
tree | 358d9d15191ea717dcd05117302d090296a4e9c1 | |
parent | b5023df3d6d46c7a220eb1db0c2db8cbe8a881fc [diff] [blame] |
#7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote.
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 @@ paths.remove('.') if not paths: return os.curdir - return apply(os.path.join, paths) + return os.path.join(*paths) # convert_path ()