create-filelist: also skip the imagelist when making others

add the imagelist's name to skip_files as we do for the other
two files. tibbs is committing the same change to upstream.
This commit is contained in:
Adam Williamson 2016-11-23 09:28:33 -08:00
parent c585ca7873
commit b99a4a6381

View file

@ -100,6 +100,8 @@ def parseopts():
opts.skip_files += [opts.timelist.name]
if not opts.filelist.name == '<stdout>':
opts.skip_files += [opts.filelist.name]
if not opts.imagelist.name == '<stdout>':
opts.skip_files += [opts.imagelist.name]
return opts