summaryrefslogtreecommitdiff
path: root/setuptools/utils.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-09-27 14:24:22 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-09-27 14:24:22 -0500
commit66a6724da8eda3336643dee086da2a3495e6422a (patch)
tree64043e9782491bde3a3a9ae2314cc59451a6c9c0 /setuptools/utils.py
parentdf3905616933c90af95e99f705b800a2f5c1c921 (diff)
parent35ea365b50bd1a64375fdbcce187affab22af3b7 (diff)
downloadpython-setuptools-git-setuptools-scm.tar.gz
Merge with mastersetuptools-scm
Diffstat (limited to 'setuptools/utils.py')
-rw-r--r--setuptools/utils.py4
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)