diff options
author | Yoshihiro Kaneko <ykaneko0929@gmail.com> | 2013-05-03 18:05:04 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-05-04 08:46:06 +0900 |
commit | 0f83d7406552ecfdbd3c0324d3a075759d071f2d (patch) | |
tree | 08b81c82fad3be281cab7749e70fc7964bcf7186 | |
parent | e93a3f2d99133422e51fbd531dd58052e8e261a3 (diff) |
of1.3: fix lacking argument in OFPAggregateStatsRequest.__init__()
Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_v1_3_parser.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 3213115b..e64a433b 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -2176,6 +2176,7 @@ class OFPAggregateStatsRequest(OFPFlowStatsRequestBase): def __init__(self, datapath, flags, table_id, out_port, out_group, cookie, cookie_mask, match): super(OFPAggregateStatsRequest, self).__init__(datapath, + flags, table_id, out_port, out_group, |