fix : missing autoload, failing validation

This commit is contained in:
alalazo 2016-04-18 17:51:53 +02:00
parent 50b148ca22
commit bce276d573
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@
'module_type_configuration': { 'module_type_configuration': {
'type': 'object', 'type': 'object',
'default': {}, 'default': {},
'oneOf': [ 'anyOf': [
{ {
'properties': { 'properties': {
'whitelist': {'$ref': '#/definitions/array_of_strings'}, 'whitelist': {'$ref': '#/definitions/array_of_strings'},

View File

@ -171,7 +171,7 @@ def parse_config_options(module_generator):
env: list of custom environment modifications to be applied in the module file env: list of custom environment modifications to be applied in the module file
""" """
# Get the configuration for this kind of generator # Get the configuration for this kind of generator
module_configuration = copy.copy(CONFIGURATION.get(module_generator.name, {})) module_configuration = copy.deepcopy(CONFIGURATION.get(module_generator.name, {}))
##### #####
# Merge all the rules # Merge all the rules