summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Syring <randy.syring@lev12.com>2014-09-20 16:37:25 -0400
committerRandy Syring <randy.syring@lev12.com>2014-09-20 16:37:25 -0400
commitb7657bd33c1ff5e1bcfda7bdac50000b41fd6e36 (patch)
tree38f872015a9fb25ee8cbb7e87b6d76ce6a3242c2
parentf6f7c0366904358cb8a4a6ebfceb4566d88ceac4 (diff)
downloadpython-setuptools-bitbucket-b7657bd33c1ff5e1bcfda7bdac50000b41fd6e36.tar.gz
remove unneeded code from last commit
-rwxr-xr-xsetuptools/command/sdist.py3
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():