diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-22 01:30:33 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-23 00:42:21 +0100 |
commit | f0a40443e1f2466db00f4a32273afa28e54d9dbb (patch) | |
tree | 7c4dbff806cddfcf148d82e96a00f5e161437eaf /src/leap/bitmask/vpn/vpn.py | |
parent | 143c61353479c8040eb1160984af7cfbe7e53a55 (diff) |
[bug] rename one of the managers to TunnelManager
otherwise there's a name collision with the former EIPManager
Diffstat (limited to 'src/leap/bitmask/vpn/vpn.py')
-rw-r--r-- | src/leap/bitmask/vpn/vpn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/bitmask/vpn/vpn.py b/src/leap/bitmask/vpn/vpn.py index 94fee8b..e19f662 100644 --- a/src/leap/bitmask/vpn/vpn.py +++ b/src/leap/bitmask/vpn/vpn.py @@ -18,7 +18,7 @@ from colorama import Fore -from leap.bitmask.vpn.manager import VPNManager +from leap.bitmask.vpn.manager import TunnelManager from leap.bitmask.vpn.fw.firewall import FirewallManager @@ -26,7 +26,7 @@ class VPNManager(object): def __init__(self, remotes, cert, key, ca, flags): - self._vpn = VPNManager( + self._vpn = TunnelManager( remotes, cert, key, ca, flags) self._firewall = FirewallManager(remotes) |