diff options
author | Marco Capitani <m.capitani@nextworks.it> | 2018-07-13 12:43:55 +0200 |
---|---|---|
committer | Marco Capitani <m.capitani@nextworks.it> | 2018-07-13 12:43:55 +0200 |
commit | 56ae5a1503fc9503bdf4a9902709f84fd3d6e99b (patch) | |
tree | 11a9af85bbda519822c10a2f2fc50c2428801cee | |
parent | af45ed266b22cefe4d94f1843536466828316414 (diff) | |
download | rumba-56ae5a1503fc9503bdf4a9902709f84fd3d6e99b.tar.gz rumba-56ae5a1503fc9503bdf4a9902709f84fd3d6e99b.zip |
irati: fix bug #59
-rw-r--r-- | rumba/prototypes/irati_templates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/prototypes/irati_templates.py b/rumba/prototypes/irati_templates.py index 6e5932d..a6dd3c4 100644 --- a/rumba/prototypes/irati_templates.py +++ b/rumba/prototypes/irati_templates.py @@ -369,7 +369,7 @@ policy_translator = { 'routing': lambda d, v, p: ps_set( d["routingConfiguration"], "policySet", v, p), 'resource-allocator.pduftg': lambda d, v, p: ps_set( - d["resourceAllocatorConfiguration"], "policySet", v, p), + d["resourceAllocatorConfiguration"]["pduftgConfiguration"], "policySet", v, p), 'efcp.*.dtcp': None, 'efcp.*.dtp': None, } |