commit | 07c24d13ed3902ed6d85e70602e3f77cca098b16 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Jun 22 23:33:05 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Jun 22 23:33:05 2012 +0200 |
tree | 5f624f9f268a890ab9ac6dd9ed18bf74ff66d610 | |
parent | 849349de05aef4de3ad1f3b5d8936b3fc79d4c84 [diff] [blame] |
Issue #444582: shutil.which() respects relative paths.
diff --git a/Lib/shutil.py b/Lib/shutil.py index cb8d23f..8da46d1 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py
@@ -1000,7 +1000,7 @@ seen = set() for dir in path: - dir = os.path.normcase(os.path.abspath(dir)) + dir = os.path.normcase(dir) if not dir in seen: seen.add(dir) for thefile in files: