summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFelician Nemeth <nemethf@tmit.bme.hu>2017-12-01 13:02:10 +0100
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-12-11 23:42:31 +0900
commit385b628d70902e2b60d03810d2e46c5f745e7fc6 (patch)
tree7deb2261bc518324a45b28fee595d7fae6a3ae3a
parent1493f51daa2d840dbdeeddf6fc2832dbd79b57c4 (diff)
ovsdb: Fix small bug
Signed-off-by: Felicián Németh <nemethf@tmit.bme.hu> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/services/protocols/ovsdb/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/services/protocols/ovsdb/api.py b/ryu/services/protocols/ovsdb/api.py
index 21ef5b06..163658c9 100644
--- a/ryu/services/protocols/ovsdb/api.py
+++ b/ryu/services/protocols/ovsdb/api.py
@@ -358,7 +358,7 @@ def del_port_by_uuid(manager, system_id, bridge_name, port_uuid):
def del_port_by_name(manager, system_id, bridge_name, port_name):
return del_port(manager, system_id, bridge_name,
- lambda tables, _: _get_port(tables, port_name))
+ lambda tables: _get_port(tables, port_name))
def set_controller(manager, system_id, bridge_name,