👾 fix bug: could not load values from .env file

This commit is contained in:
Marc Michalsky 2021-08-13 11:57:58 +02:00
parent ff97e69696
commit edafcf7632

View file

@ -21,7 +21,7 @@ def treat_issues():
# Load configuration
try:
config = EnvYAML(dir_path + 'config.yaml')
config = EnvYAML(dir_path + 'config.yaml', dir_path + '.env')
url = config['redmine']['url']
version = config['redmine']['version']
api_key = config['redmine']['api_key']