diff options
author | Randy Syring <randy.syring@lev12.com> | 2014-09-20 16:37:25 -0400 |
---|---|---|
committer | Randy Syring <randy.syring@lev12.com> | 2014-09-20 16:37:25 -0400 |
commit | 1c05e6a7b7f2a54a55285857d498409df3dc9383 (patch) | |
tree | 4ee4b74dce7d50f9664617ca67539a7dcff34a6f /setuptools/command | |
parent | 4e5c7d0657a9719d2fa961c852daf0926de91ae3 (diff) | |
download | external_python_setuptools-1c05e6a7b7f2a54a55285857d498409df3dc9383.tar.gz external_python_setuptools-1c05e6a7b7f2a54a55285857d498409df3dc9383.tar.bz2 external_python_setuptools-1c05e6a7b7f2a54a55285857d498409df3dc9383.zip |
remove unneeded code from last commit
Diffstat (limited to 'setuptools/command')
-rwxr-xr-x | setuptools/command/sdist.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index dc8d6773..a77c39f2 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -166,8 +166,7 @@ class sdist(orig.sdist): for pattern in optional: files = list(filter(cs_path_exists, glob(pattern))) if files: - actual_fnames = map(os.path.normcase, files) - self.filelist.extend(actual_fnames) + self.filelist.extend(files) # getting python files if self.distribution.has_pure_modules(): |