From 3a376525cd7998264545c3ee96f18123989690cb Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 4 Jul 2017 14:38:43 +0100 Subject: [PATCH] PluginCache: Fixed Typo --- wa/framework/configuration/plugin_cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wa/framework/configuration/plugin_cache.py b/wa/framework/configuration/plugin_cache.py index 71468154..6fe1e801 100644 --- a/wa/framework/configuration/plugin_cache.py +++ b/wa/framework/configuration/plugin_cache.py @@ -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]))