diff options
author | Jesse Weinstein <jesse.weinstein@zonarsystems.com> | 2014-08-28 20:55:27 +0000 |
---|---|---|
committer | Jesse Weinstein <jesse.weinstein@zonarsystems.com> | 2014-08-28 20:55:27 +0000 |
commit | b54668a95934f1f63647e219cbbcbeab4a524ac3 (patch) | |
tree | 3562701b99e646b081bcb7956f99e310348153cd /setuptools/command/install_egg_info.py | |
parent | 0de72786a0631a0df4e7479fc538e934c0f5368d (diff) | |
download | external_python_setuptools-b54668a95934f1f63647e219cbbcbeab4a524ac3.tar.gz external_python_setuptools-b54668a95934f1f63647e219cbbcbeab4a524ac3.tar.bz2 external_python_setuptools-b54668a95934f1f63647e219cbbcbeab4a524ac3.zip |
Fix issue #118: Prevent the egg-info directory from being redundantly included in the list of modified files.
--HG--
extra : rebase_source : 8bad8bf37ef1fdc59b4c1ba21fcff43d25f9b2be
Diffstat (limited to 'setuptools/command/install_egg_info.py')
-rwxr-xr-x | setuptools/command/install_egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_egg_info.py b/setuptools/command/install_egg_info.py index fd0f118b..992709f1 100755 --- a/setuptools/command/install_egg_info.py +++ b/setuptools/command/install_egg_info.py @@ -27,7 +27,7 @@ class install_egg_info(Command): ).egg_name() + '.egg-info' self.source = ei_cmd.egg_info self.target = os.path.join(self.install_dir, basename) - self.outputs = [self.target] + self.outputs = [] def run(self): self.run_command('egg_info') |