summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-05-20 01:24:01 +0200
committerMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-05-23 01:42:45 +0200
commitb16725ac388b6a0bab6c0ff79d809559589be248 (patch)
tree231e2cab003da26764a4ddb02511d39545a6a3ae /setuptools/command
parent3544de73b3662a27fac14d8eb9f5c841668d66de (diff)
downloadpython-setuptools-git-b16725ac388b6a0bab6c0ff79d809559589be248.tar.gz
Remove license_files_computed field
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index 26ff9a4c..67259c7c 100644
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -593,7 +593,7 @@ class manifest_maker(sdist):
self.filelist.graft(ei_cmd.egg_info)
def add_license_files(self):
- license_files = self.distribution.metadata.license_files_computed
+ license_files = self.distribution.metadata.license_files or []
for lf in license_files:
log.info("adding license file '%s'", lf)
pass