Fix fix_import for the stupid OS that has case-insensitive file names, again.

This commit is contained in:
Valentin Lorentz 2013-07-15 13:43:45 +02:00
parent 5feb1fba59
commit f786decb5e
1 changed files with 3 additions and 2 deletions

View File

@ -94,10 +94,11 @@ class FixImport(fixer_base.BaseFix):
# so can't be a relative import.
if not exists(join(dirname(base_path), "__init__.py")):
return False
if isdir(base_path):
(path, filename) = split(base_path)
if isdir(base_path) and filename in listdir(path):
# We use listdir too because of case-insensitivity on Windows
return True
for ext in [".py", ".pyc", ".so", ".sl", ".pyd"]:
(path, filename) = split(base_path)
if (filename + ext) in listdir(path):
# We use this instead of os.path.exists because of case-insensitivity
# on Windows