Merge branch 'ci-phasesconfig' into lc-eph

This commit is contained in:
Etan Kissling 2022-12-13 12:34:27 +01:00
commit f24365fa36
No known key found for this signature in database
GPG Key ID: B21DA824C5A3D03D
1 changed files with 2 additions and 2 deletions

View File

@ -596,8 +596,8 @@ def with_config_overrides(config_overrides, emitted_fork=None, emit=True):
if 'phases' in kw:
phases = {}
for fork in kw['phases']:
phases[fork], output = \
spec_with_config_overrides(_get_copy_of_spec(kw['phases'][fork]), config_overrides)
phases[fork], output = spec_with_config_overrides(
_get_copy_of_spec(kw['phases'][fork]), config_overrides)
if emitted_fork == fork:
output_config = output
kw['phases'] = phases