Return correct configuration dict

pull/6697/head
Jimmy Brisson 2018-04-18 09:09:29 -05:00 committed by adbridge
parent 751d38f0f6
commit a89c8212fe
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ class Config(object):
all_params = self.get_target_config_data()
lib_params, macros = self.get_lib_config_data(all_params)
self.get_app_config_data(lib_params, macros)
return all_params, macros
return lib_params, macros
@staticmethod
def _check_required_parameters(params):