Fixed recent bug in plateup when no platters / panels.

This commit is contained in:
Chris Palmer 2020-11-15 16:29:50 +00:00
parent fc7fd5482e
commit eb9bcf0ada
1 changed files with 21 additions and 20 deletions

View File

@ -87,10 +87,11 @@ def plateup(target, part_type, usage = None):
match = re.match(r'^ECHO: "~(.*?\.' + part_type + r').*"$', line)
if match:
used.append(match.group(1))
#
# Copy file that are not included
#
copied = []
if all_sources:
#
# Copy files that are not included
#
for file in os.listdir(parts_dir):
if file.endswith('.' + part_type) and not file in used:
src = parts_dir + '/' + file