diff options
-rw-r--r-- | ryu/app/simple_switch_12.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/app/simple_switch_12.py b/ryu/app/simple_switch_12.py index 62b5bf94..27a643cb 100644 --- a/ryu/app/simple_switch_12.py +++ b/ryu/app/simple_switch_12.py @@ -38,7 +38,7 @@ class SimpleSwitch12(app_manager.RyuApp): match = datapath.ofproto_parser.OFPMatch(in_port=port, eth_dst=dst) inst = [datapath.ofproto_parser.OFPInstructionActions( - datapath.ofproto.OFPIT_APPLY_ACTIONS, actions)] + ofproto.OFPIT_APPLY_ACTIONS, actions)] mod = datapath.ofproto_parser.OFPFlowMod( datapath=datapath, cookie=0, cookie_mask=0, table_id=0, |