diff options
author | Yoshihiro Kaneko <ykaneko0929@gmail.com> | 2013-05-03 18:05:06 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-05-04 08:48:43 +0900 |
commit | 76b271461b0589c822b44bee32f274f59ceeaacf (patch) | |
tree | 790d7a18644d957be72142a04d3cf788a8b74753 | |
parent | bc78776f400a9061548acd1d20177c64f72f4202 (diff) |
of1.3: fix wrong class name in OFPGroupFeaturesStatsRequest.__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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 447115c5..c7336033 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -2383,7 +2383,7 @@ class OFPGroupFeaturesStats(collections.namedtuple('OFPGroupFeaturesStats', ( @_set_msg_type(ofproto_v1_3.OFPT_MULTIPART_REQUEST) class OFPGroupFeaturesStatsRequest(OFPMultipartRequest): def __init__(self, datapath, flags): - super(OFPGroupFeaturesRequest, self).__init__(datapath, flags) + super(OFPGroupFeaturesStatsRequest, self).__init__(datapath, flags) @OFPMultipartReply.register_stats_type() |