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:
parent
c585ca7873
commit
b99a4a6381
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue