mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Use ordered dict for the actionmap cache (#136)
This commit is contained in:
parent
0223d3010a
commit
39891485c5
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue