diff options
Diffstat (limited to 'setuptools/utils.py')
-rw-r--r-- | setuptools/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/utils.py b/setuptools/utils.py index 91e4b87f..080b9a8e 100644 --- a/setuptools/utils.py +++ b/setuptools/utils.py @@ -3,9 +3,9 @@ import os.path def cs_path_exists(fspath): - if not os.path.exists(fspath): + if not os.path.exists(fspath): return False # make absolute so we always have a directory abspath = os.path.abspath(fspath) directory, filename = os.path.split(abspath) - return filename in os.listdir(directory)
\ No newline at end of file + return filename in os.listdir(directory) |