diff --git a/python/muell.py b/python/muell.py index 1a5c539..b670917 100644 --- a/python/muell.py +++ b/python/muell.py @@ -45,7 +45,7 @@ def readConfig(): home = Path.home() # home ist ohne / am Ende! config = {} with open(f'{home}/.muell.yaml', 'r') as config_file: - config = yaml.load(config_file) + config = yaml.safe_load(config_file) return config