These changes correct what appear to be typos * Parameters should be separated by a comma * The type of the class is OFPFlowStatsRequestBase
Signed-off-by: Simon Horman <[email protected]> --- ryu/ofproto/ofproto_v1_0_parser.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_0_parser.py b/ryu/ofproto/ofproto_v1_0_parser.py index f9f6ae9..0468297 100644 --- a/ryu/ofproto/ofproto_v1_0_parser.py +++ b/ryu/ofproto/ofproto_v1_0_parser.py @@ -1152,7 +1152,7 @@ class OFPDescStatsRequest(OFPStatsRequest): class OFPFlowStatsRequestBase(OFPStatsRequest): def __init__(self, datapath, flags, match, table_id, out_port): - super(OFPFlowStatsRequest. self).__init__(datapath, flags) + super(OFPFlowStatsRequestBase, self).__init__(datapath, flags) self.match = match self.table_id = table_id self.out_port = out_port -- 1.7.6.3 ------------------------------------------------------------------------------ Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. http://www.accelacomm.com/jaw/sfnl/114/51521223/ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
