diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-03-27 13:27:07 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-03-28 23:51:25 +0200 |
commit | dcbbda4dbd442340cbc46e2f1a476cb21e12ca0f (patch) | |
tree | 549bb1e573ad231043045e5cdd820d1327233420 /src/leap/bitmask/vpn/process.py | |
parent | 8a89b36026b0866625bbff805c16b489f3670b2b (diff) |
[refactor] move platform constants into leap.bitmask
The IS_${platform} constants are used in more places than the vpn
module. Let's define them in leap.bitmask.
Diffstat (limited to 'src/leap/bitmask/vpn/process.py')
-rw-r--r-- | src/leap/bitmask/vpn/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/process.py b/src/leap/bitmask/vpn/process.py index 35ccf9f6..17d8fddc 100644 --- a/src/leap/bitmask/vpn/process.py +++ b/src/leap/bitmask/vpn/process.py @@ -37,7 +37,7 @@ from zope.interface import implementer from leap.bitmask.vpn.utils import get_vpn_launcher from leap.bitmask.vpn.management import ManagementProtocol from leap.bitmask.vpn.launchers import darwin -from leap.bitmask.vpn.constants import IS_MAC, IS_LINUX +from leap.bitmask.system import IS_MAC, IS_LINUX from leap.common.events import catalog, emit_async from zope.interface import Interface |