Merge pull request #348 from IzeBerg/patch-1

'NoneType' object is not iterable with numproc > 1
This commit is contained in:
R. Bernstein 2021-06-14 13:44:49 -04:00 committed by GitHub
commit 971757e997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,7 @@ def main_bin():
if f is None:
break
(t, o, f, v) = \
main(src_base, out_base, [f], None, outfile, **options)
main(src_base, out_base, [f], [], outfile, **options)
tot_files += t
okay_files += o
failed_files += f