diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2013-11-27 13:06:44 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-11-27 12:49:48 +0900 |
commit | 0ff15a58fa76011848343f9ff471bab158ade1ff (patch) | |
tree | eed0f7ee24af6989e15509ce81a64676b127baf1 | |
parent | 748f8ae970c78e7284fe40ae965c9ee7f1b1a37e (diff) |
of13 OFPTableFeaturesStatsRequest: remove an unused argument
and while i'm here, document arguments.
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_v1_3_parser.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 103969a8..df5d4609 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -5087,10 +5087,17 @@ class OFPTableFeaturesStatsRequest(OFPMultipartRequest): Table features statistics request message The controller uses this message to query table features. + + ================ ====================================================== + Attribute Description + ================ ====================================================== + body List of ``OFPTableFeaturesStats`` instances. + The default is []. + ================ ====================================================== """ def __init__(self, datapath, flags, body=[], - properties=[], type_=None): + type_=None): super(OFPTableFeaturesStatsRequest, self).__init__(datapath, flags) self.body = body |