diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/bitmask/vpn/errors.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/leap/bitmask/vpn/errors.py b/src/leap/bitmask/vpn/errors.py index a6c55001..1eafe670 100644 --- a/src/leap/bitmask/vpn/errors.py +++ b/src/leap/bitmask/vpn/errors.py @@ -1,14 +1,12 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from ._management import OpenVPNAlreadyRunning, AlienOpenVPNAlreadyRunning from .launcher import OpenVPNNotFoundException, VPNLauncherException from leap.bitmask.vpn.launchers.linux import ( NoPolkitAuthAgentAvailable, NoPkexecAvailable) from leap.bitmask.vpn.launchers.darwin import NoTunKextLoaded -__all__ = ["OpenVPNAlreadyRunning", "AlienOpenVPNAlreadyRunning", - "OpenVPNNotFoundException", "VPNLauncherException", +__all__ = ["OpenVPNNotFoundException", "VPNLauncherException", "NoPolkitAuthAgentAvailable", "NoPkexecAvailable", "NoTunKextLoaded"] |