Fix compilation order reversed

This commit is contained in:
Kovid Goyal 2017-12-11 20:28:36 +05:30
parent abdc149f65
commit 56a30a014c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -305,7 +305,7 @@ def parallel_run(todo, desc='Compiling {} ...'):
num_workers = max(1, cpu_count()) num_workers = max(1, cpu_count())
except Exception: except Exception:
num_workers = 2 num_workers = 2
items = list(todo.items()) items = list(reversed(tuple(todo.items())))
workers = {} workers = {}
failed = None failed = None