Signed-off-by: Benny Eggerstedt <[email protected]>
---
ryu/app/simple_switch_13.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/ryu/app/simple_switch_13.py b/ryu/app/simple_switch_13.py
index f9ec767..b9cbad0 100644
--- a/ryu/app/simple_switch_13.py
+++ b/ryu/app/simple_switch_13.py
@@ -54,8 +54,9 @@ class SimpleSwitch13(app_manager.RyuApp):
inst = [parser.OFPInstructionActions(ofproto.OFPIT_APPLY_ACTIONS,
actions)]
if buffer_id:
- mod = parser.OFPFlowMod(datapath=datapath, buffer_id=buffer_id,
priority=priority,
- match=match, instructions=inst)
+ mod = parser.OFPFlowMod(datapath=datapath, buffer_id=buffer_id,
+ priority=priority, match=match,
+ instructions=inst)
else:
mod = parser.OFPFlowMod(datapath=datapath, priority=priority,
match=match, instructions=inst)
--
1.9.3 (Apple Git-50)
------------------------------------------------------------------------------
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel