diff --git a/tlumon/tlumon b/tlumon/tlumon index dfbdcc0..2da98a0 100755 --- a/tlumon/tlumon +++ b/tlumon/tlumon @@ -55,7 +55,7 @@ class Main: logging.error("Couldn't read global config: %s", e) try: with open(f"{yamlpath}/local.sls", "r") as f: - localconfig = taml_safe_load(f) + localconfig = yaml.safe_load(f) except FileNotFoundError as e: logging.debug("Couldn't read local config: %s", e) localconfig = {}