summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSimon Horman <horms@verge.net.au>2012-03-01 09:54:13 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-03-01 10:02:10 +0900
commit6aa847a84e400226ea35cb1dd8db5b1a614fb315 (patch)
treea3090b8332637caefdfaf6312c735160de2e9c87
parentd7ee5d2282d39b3d816149a1797b52d671c99478 (diff)
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>
-rw-r--r--ryu/ofproto/ofproto_v1_0_parser.py2
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 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