commit | c495d9e91e8a3a27399654e767afbb3c6f158595 | [log] [tgz] |
---|---|---|
author | Rich Lane <rlane@bigswitch.com> | Fri Mar 08 17:43:36 2013 -0800 |
committer | Rich Lane <rlane@bigswitch.com> | Tue Mar 12 10:45:56 2013 -0700 |
tree | df9334b3bc16a82974155749243fcb0ad6202e9e | |
parent | 9d3cc6bb3fc93d18631784a7eb858f6a0b8cbf9f [diff] [blame] |
loxi-prep: rename action_list.add to append For consistency with the list type.
diff --git a/tests/openflow_protocol_messages.py b/tests/openflow_protocol_messages.py index 028d939..7ab49a2 100644 --- a/tests/openflow_protocol_messages.py +++ b/tests/openflow_protocol_messages.py
@@ -221,7 +221,7 @@ msg.data = str(outpkt) act = ofp.action.output() act.port = dp_port - msg.actions.add(act) + msg.actions.append(act) logging.info("PacketOut to: " + str(dp_port)) self.controller.message_send(msg)