From 688f1967248a523fe80d55d7869f72d4da757409 Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Fri, 17 May 2013 10:08:50 +0900 Subject: app/gre_tunnel: pylint > E: 60,18:PortSet.EventTunnelKeyDel.__init__: Undefined variable 'EventTunnelKeyDel' > W: 18,0: Unused import logging Signed-off-by: Isaku Yamahata Signed-off-by: FUJITA Tomonori --- ryu/app/gre_tunnel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ryu/app/gre_tunnel.py b/ryu/app/gre_tunnel.py index 46074d23..5fed3651 100644 --- a/ryu/app/gre_tunnel.py +++ b/ryu/app/gre_tunnel.py @@ -15,7 +15,6 @@ # limitations under the License. import collections -import logging from ryu import exception as ryu_exc from ryu.app.rest_nw_id import (NW_ID_VPORT_GRE, @@ -57,7 +56,7 @@ class PortSet(app_manager.RyuApp): class EventTunnelKeyDel(event.EventBase): def __init__(self, tunnel_key): - super(EventTunnelKeyDel, self).__init__() + super(PortSet.EventTunnelKeyDel, self).__init__() self.tunnel_key = tunnel_key class EventPortBase(event.EventBase): -- cgit v1.2.3