We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e0e37 commit 27440caCopy full SHA for 27440ca
scripts/image-filer.py
@@ -97,11 +97,11 @@ def build_parser ():
97
os.makedirs (run, exist_ok = True)
98
99
if len (files) < len (lights):
100
- print ("error: not enough files in %s\n" % run)
101
- break
+ print ("error: not enough files in %s (%d/%d)\n" % (run, len (files), len (lights)))
+ continue
102
if len (files) > len (lights):
103
- print ("error: too many files in %s\n" % run)
104
+ print ("error: too many files in %s (%d/%d)\n" % (run, len (files), len (lights)))
105
106
if args.verbose:
107
print ("filing into %s" % run)
0 commit comments