From 2b154e0b882992fc524b69d446e0fd06536c0cd4 Mon Sep 17 00:00:00 2001 From: Renat Iliev Date: Mon, 14 Jun 2021 19:50:18 +0300 Subject: [PATCH] 'NoneType' object is not iterable with numproc > 1 main calls with source_paths=None, but it needs to be iterable --- uncompyle6/bin/uncompile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncompyle6/bin/uncompile.py b/uncompyle6/bin/uncompile.py index e265d792..6266ecd9 100755 --- a/uncompyle6/bin/uncompile.py +++ b/uncompyle6/bin/uncompile.py @@ -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