diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-25 12:00:32 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:18:13 -0400 |
commit | cef98e7a4b00bca59289e0c447c9e9de88503bf5 (patch) | |
tree | ec8dd4289386a149dc86507b538207a7fe385ff5 /src/leap/bitmask/vpn | |
parent | f861b9fb9e50141f9b97c50d54bae7cb6967b1bf (diff) |
[refactor] remove error import
Diffstat (limited to 'src/leap/bitmask/vpn')
-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"] |