From bdb2c9639a3f3912ed6569735dccb2b775594391 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 27 Feb 2014 01:44:28 +0900 Subject: [PATCH] ofproto_v1_4_parser: update OFPActionSetField docstring Signed-off-by: YAMAMOTO Takashi Signed-off-by: FUJITA Tomonori --- ryu/ofproto/ofproto_v1_4_parser.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_4_parser.py b/ryu/ofproto/ofproto_v1_4_parser.py index 1a606784..88433555 100644 --- a/ryu/ofproto/ofproto_v1_4_parser.py +++ b/ryu/ofproto/ofproto_v1_4_parser.py @@ -4814,11 +4814,11 @@ class OFPActionSetField(OFPAction): This action modifies a header field in the packet. - ================ ====================================================== - Attribute Description - ================ ====================================================== - field Instance of ``OFPMatchField`` - ================ ====================================================== + The set of keywords available for this is same as OFPMatch. + + Example:: + + set_field = OFPActionSetField(eth_src="00:00:00:00:00") """ def __init__(self, field=None, **kwargs): super(OFPActionSetField, self).__init__()