summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/leap/bitmask/vpn/service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index f11a37bc..1ec1ed6d 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -130,11 +130,11 @@ class VPNService(HookableService):
defer.returnValue({'get_cert': 'ok'})
def do_install(self):
- ask = privilege.install_helpers()
+ privilege.install_helpers()
return {'install': 'ok'}
def do_uninstall(self):
- ask = privilege.uninstall_helpers()
+ privilege.uninstall_helpers()
return {'uninstall': 'ok'}
@defer.inlineCallbacks