Compare commits

..

1 Commits

1 changed files with 1 additions and 1 deletions

View File

@ -36,4 +36,4 @@ def initialize(storage_config):
environment_variable_name,
) in DEFAULT_BOOL_OPTION_TO_ENVIRONMENT_VARIABLE.items():
value = storage_config.get(option_name, False)
os.environ[environment_variable_name] = 'yes' if value else 'no'
os.environ[environment_variable_name] = 'YES' if value else 'NO'