From 385b628d70902e2b60d03810d2e46c5f745e7fc6 Mon Sep 17 00:00:00 2001 From: Felician Nemeth Date: Fri, 1 Dec 2017 13:02:10 +0100 Subject: [PATCH] ovsdb: Fix small bug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Felicián Németh Signed-off-by: FUJITA Tomonori --- ryu/services/protocols/ovsdb/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,