diff --git a/tljh/configurer.py b/tljh/configurer.py index c16cad4..954f185 100644 --- a/tljh/configurer.py +++ b/tljh/configurer.py @@ -37,7 +37,8 @@ default = { def apply_yaml_config(path, c): if os.path.exists(path): with open(path) as f: - tljh_config = _merge_dictionaries(default, yaml.safe_load(f)) + # FIXME: Figure out correct order of merging here + tljh_config = _merge_dictionaries(yaml.safe_load(f), default) else: tljh_config = copy.deepcopy(default)