From 4b6297e7ea8dbcde6b1eb4c6dd8b10aa39683b6c Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Thu, 15 Feb 2018 13:32:19 +0000 Subject: [PATCH] configuration/plugin_cache: Fix incorrect parmeter name --- wa/framework/configuration/plugin_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wa/framework/configuration/plugin_cache.py b/wa/framework/configuration/plugin_cache.py index c7b74df4..3ccef6bb 100644 --- a/wa/framework/configuration/plugin_cache.py +++ b/wa/framework/configuration/plugin_cache.py @@ -257,7 +257,7 @@ def update_config_from_source(final_config, source, state): final_config.name = state.specific_name for name, cfg_point in state.cfg_points.iteritems(): if name in state.specific_config[source]: - seen_state.specific_config[name].append(str(source)) + state.seen_specific_config[name].append(str(source)) value = state.specific_config[source].pop(name) cfg_point.set_value(final_config, value, check_mandatory=False)