diff options
Diffstat (limited to 'src/leap/bitmask/vpn/tunnel.py')
-rw-r--r-- | src/leap/bitmask/vpn/tunnel.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/vpn/tunnel.py b/src/leap/bitmask/vpn/tunnel.py index 831f04d..ce4707a 100644 --- a/src/leap/bitmask/vpn/tunnel.py +++ b/src/leap/bitmask/vpn/tunnel.py @@ -50,7 +50,7 @@ class ConfiguredTunnel(object): On start, it spawns a VPNProcess instance that will use a vpnlauncher suited for the running platform and connect to the management interface opened by the openvpn process, executing commands over that interface on - demand. + demand """ log = Logger() @@ -100,8 +100,8 @@ class ConfiguredTunnel(object): @defer.inlineCallbacks def _start_vpn(self): self.log.debug('VPN: start') - args = [self._vpnconfig, self._providerconfig, self._host, - self._port] + args = [self._vpnconfig, self._providerconfig, + self._host, self._port] kwargs = {'openvpn_verb': 4, 'remotes': self._remotes, 'restartfun': self._restart_vpn} vpnproc = VPNProcess(*args, **kwargs) |