diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-11-27 06:59:47 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-11-27 12:17:40 +0900 |
commit | c36e686fef84035396515ae07984f39831abac96 (patch) | |
tree | 058fee3dcef8fc42ca4f7ebd42493a96bfac6afe | |
parent | ce52d706965b9df0c38f7a05f1796b46e7798981 (diff) |
fix vrrp utils
Maybe better to split api stuff from topology/switches.py but had
better move utils.py out of vrrp directory. For now, adopt it for the
current code.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/services/protocols/vrrp/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/services/protocols/vrrp/utils.py b/ryu/services/protocols/vrrp/utils.py index 8cb8fa18..15e8fd91 100644 --- a/ryu/services/protocols/vrrp/utils.py +++ b/ryu/services/protocols/vrrp/utils.py @@ -17,7 +17,7 @@ from ryu.lib.packet import ethernet from ryu.lib.packet import vlan from ryu.ofproto import ether -from ryu.topology import api as topo_api +from ryu.topology import switches as topo_api def may_add_vlan(packet, vlan_id): |