diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-01-04 20:46:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 20:46:17 -0500 |
commit | 82c7b798928cf2f508585b33616f454ef0b21983 (patch) | |
tree | eef9d0909bc96cdd4ae65ee571d3404afd303491 /setuptools/dist.py | |
parent | c0edf9323c1e124ae34f96ccfb7cf21df0f32252 (diff) | |
download | external_python_setuptools-82c7b798928cf2f508585b33616f454ef0b21983.tar.gz external_python_setuptools-82c7b798928cf2f508585b33616f454ef0b21983.tar.bz2 external_python_setuptools-82c7b798928cf2f508585b33616f454ef0b21983.zip |
Remove extraneous attribute copy, artifact of bad merge.
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index fc5db5d1..c2bfdbc7 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -325,9 +325,6 @@ class Distribution(Distribution_parse_config_files, _Distribution): self.dist_files = [] self.src_root = attrs.pop("src_root", None) self.patch_missing_pkg_info(attrs) - self.long_description_content_type = attrs.get( - 'long_description_content_type' - ) self.project_urls = attrs.get('project_urls', {}) self.dependency_links = attrs.pop('dependency_links', []) self.setup_requires = attrs.pop('setup_requires', []) |