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>
This commit is contained in:
Yoshihiro Kaneko 2013-05-03 18:05:06 +09:00 committed by FUJITA Tomonori
parent bc78776f40
commit 76b271461b

View File

@ -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()