diff --git a/moulinette/actionsmap.py b/moulinette/actionsmap.py index 4e963d6c..3fe8cd03 100644 --- a/moulinette/actionsmap.py +++ b/moulinette/actionsmap.py @@ -526,7 +526,7 @@ class ActionsMap(object): # Read actions map from yaml file am_file = '%s/actionsmap/%s.yml' % (pkg.datadir, n) with open(am_file, 'r') as f: - actionsmaps[n] = yaml.load(f) + actionsmaps[n] = ordered_yaml_load(f) # at installation, cachedir might not exists if os.path.exists('%s/actionsmap/' % pkg.cachedir):