fix test config file location and paths

This commit is contained in:
Bastian Schroll 2019-03-03 13:54:14 +01:00
parent 2ca62d90f2
commit 4b69b08028
7 changed files with 45 additions and 38 deletions

View file

@ -50,7 +50,7 @@ class ConfigYAML:
except FileNotFoundError:
logging.error("config file not found: %s", configPath)
except yaml.parser.ParserError:
logging.exception("error in config file")
logging.exception("syntax error in config file: %s", configPath)
return False
def get(self, *args, default=None):