'NoneType' object is not iterable with numproc > 1

main calls with source_paths=None, but it needs to be iterable
This commit is contained in:
Renat Iliev
2021-06-14 19:50:18 +03:00
committed by GitHub
parent 5d35a75743
commit 2b154e0b88

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