Signed-off-by: YAMAMOTO Takashi <[email protected]> --- ryu/ofproto/ofproto_v1_3_parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index c980887..aced858 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -2869,8 +2869,8 @@ class OFPPortDescStatsRequest(OFPMultipartRequest): @_set_stats_type(ofproto_v1_3.OFPMP_PORT_DESC, OFPPort) @_set_msg_type(ofproto_v1_3.OFPT_MULTIPART_REPLY) class OFPPortDescStatsReply(OFPMultipartReply): - def __init__(self, datapath): - super(OFPPortDescStatsReply, self).__init__(datapath) + def __init__(self, datapath, **kwargs): + super(OFPPortDescStatsReply, self).__init__(datapath, **kwargs) # TODO: OFPMP_EXPERIMENTER -- 1.8.1.5 ------------------------------------------------------------------------------ See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose root cause in seconds. Start your free trial of AppDynamics Pro today! http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
