diff --git a/crtools/config.py b/crtools/config.py index beba8eb..2a01949 100644 --- a/crtools/config.py +++ b/crtools/config.py @@ -240,10 +240,11 @@ def load_config_file(config_file_name=None, locale=None): config = __validate_paths(config) config = __validate_crtools_settings(config) + logging.getLogger(__name__).debug(config) + if locale: config['crtools']['locale'] = locale config['strings'] = __localize_strings(config['crtools']['locale']) - logging.getLogger(__name__).debug(config) return config diff --git a/setup.py b/setup.py index 05df52b..88d89a0 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ # requirements files see: # https://packaging.python.org/en/latest/requirements.html setup_requires=['babel'], - install_requires=['jinja2','configparser','pyroyale==0.3.0'], + install_requires=['jinja2','configparser','pyroyale==0.4.0'], tests_requires=['pytest','pytest-runner','coverage','requests_mock'], include_package_data=True,