From 6aa847a84e400226ea35cb1dd8db5b1a614fb315 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Thu, 1 Mar 2012 09:54:13 +0900 Subject: Correct typos in OFPFlowStatsRequestBase class 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 Signed-off-by: FUJITA Tomonori --- ryu/ofproto/ofproto_v1_0_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/ofproto/ofproto_v1_0_parser.py b/ryu/ofproto/ofproto_v1_0_parser.py index 02780f4d..a15fc308 100644 --- a/ryu/ofproto/ofproto_v1_0_parser.py +++ b/ryu/ofproto/ofproto_v1_0_parser.py @@ -1089,7 +1089,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 -- cgit v1.2.3