diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-19 17:57:33 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-19 20:14:31 +0200 |
commit | 3ebaa03a307eab2a0a4d31efd143326d6ea592b2 (patch) | |
tree | 2d91a8947e9cc7c2ca003221e27c172c69cd713d /src/leap/bitmask/vpn/manager.py | |
parent | 6227a8ed9c1184eb01eca4e23cc419473e5c5b51 (diff) |
[bug] stop firewall if was failed close
Diffstat (limited to 'src/leap/bitmask/vpn/manager.py')
-rw-r--r-- | src/leap/bitmask/vpn/manager.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/leap/bitmask/vpn/manager.py b/src/leap/bitmask/vpn/manager.py index 66fc3d5..1c07976 100644 --- a/src/leap/bitmask/vpn/manager.py +++ b/src/leap/bitmask/vpn/manager.py @@ -41,7 +41,6 @@ class TunnelManager(object): ((ip1, portA), (ip2, portB), ...) :type remotes: tuple of tuple(str, int) """ - print "INIT", remotes # TODO we can set all the needed ports, gateways and paths in here # TODO need gateways here # sorting them doesn't belong in here @@ -65,7 +64,6 @@ class TunnelManager(object): Start the VPN process. """ result = self._vpn.start() - print "RESULT START --->", result return result def stop(self): |