Filter out missing files and use extend()

This commit is contained in:
Mick Koch 2019-10-28 19:16:13 -04:00
parent 4a31168e51
commit e08ec2b640
1 changed files with 2 additions and 2 deletions

View File

@ -226,6 +226,6 @@ class sdist(sdist_add_defaults, orig.sdist):
log.warn(
"warning: Failed to find the configured license file '%s'",
f)
continue
files.remove(f)
self.filelist.append(f)
self.filelist.extend(files)