diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-12 22:28:51 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-13 04:48:19 +0700 |
commit | 843988ea2e4e4df34abf343e05fa1bac17680f5c (patch) | |
tree | 363d38cd8a63244456a1c96bd717f687a676b048 /setuptools/utils.py | |
parent | e3e21fd3d608d72ebe1ba2e4d2b3a59fbca76554 (diff) | |
download | external_python_setuptools-843988ea2e4e4df34abf343e05fa1bac17680f5c.tar.gz external_python_setuptools-843988ea2e4e4df34abf343e05fa1bac17680f5c.tar.bz2 external_python_setuptools-843988ea2e4e4df34abf343e05fa1bac17680f5c.zip |
Remove trailing whitespace
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) |