1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

PluginCache: Fixed Typo

This commit is contained in:
Marc Bonnici 2017-07-04 14:38:43 +01:00
parent 5232bc3504
commit 3a376525cd

View File

@ -241,7 +241,7 @@ def update_config_from_source(final_config, source, state):
cfg_point.set_value(final_config, value, check_mandatory=False)
if state.generic_config[source]:
msg = 'Unexected values for {}: {}'
msg = 'Unexpected values for {}: {}'
raise ConfigError(msg.format(state.generic_name,
state.generic_config[source]))
@ -254,6 +254,6 @@ def update_config_from_source(final_config, source, state):
cfg_point.set_value(final_config, value, check_mandatory=False)
if state.specific_config[source]:
msg = 'Unexected values for {}: {}'
msg = 'Unexpected values for {}: {}'
raise ConfigError(msg.format(state.specific_name,
state.specific_config[source]))