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 <horms@verge.net.au>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Simon Horman 2012-03-01 09:54:13 +09:00 committed by FUJITA Tomonori
parent d7ee5d2282
commit 6aa847a84e

View File

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