aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-04-18 17:52:44 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-04-18 17:52:44 -0500
commit1163c86b3b62258f28964c2aee8483631a85c892 (patch)
tree1c7eaefba68abeefcf6c1eec8a56a6dbf9f0ebb6 /setuptools/command
parent0a32f2290aed6db34a142de0d5c0d607b60c6a05 (diff)
downloadexternal_python_setuptools-1163c86b3b62258f28964c2aee8483631a85c892.tar.gz
external_python_setuptools-1163c86b3b62258f28964c2aee8483631a85c892.tar.bz2
external_python_setuptools-1163c86b3b62258f28964c2aee8483631a85c892.zip
Revert "addresses #436". Fixes #1016.
This reverts commit 1955e5b0df67cc1aa389b8c655199958a6fcc6a0.
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index 21bbfb72..1a6ea9cb 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -564,6 +564,8 @@ class manifest_maker(sdist):
rcfiles = list(walk_revctrl())
if rcfiles:
self.filelist.extend(rcfiles)
+ elif os.path.exists(self.manifest):
+ self.read_manifest()
ei_cmd = self.get_finalized_command('egg_info')
self.filelist.graft(ei_cmd.egg_info)