diff options
-rw-r--r-- | ryu/app/gre_tunnel.py | 3 |
1 files changed, 1 insertions, 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): |