summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2017-08-25 12:00:32 -0400
committerKali Kaneko <kali@leap.se>2017-08-30 16:18:13 -0400
commitcef98e7a4b00bca59289e0c447c9e9de88503bf5 (patch)
treeec8dd4289386a149dc86507b538207a7fe385ff5
parentf861b9fb9e50141f9b97c50d54bae7cb6967b1bf (diff)
[refactor] remove error import
-rw-r--r--src/leap/bitmask/vpn/errors.py4
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"]