diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-04-18 17:52:44 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-04-18 17:52:44 -0500 |
commit | 1163c86b3b62258f28964c2aee8483631a85c892 (patch) | |
tree | 1c7eaefba68abeefcf6c1eec8a56a6dbf9f0ebb6 /setuptools/command | |
parent | 0a32f2290aed6db34a142de0d5c0d607b60c6a05 (diff) | |
download | external_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-x | setuptools/command/egg_info.py | 2 |
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) |