summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2017-04-17 18:41:30 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2017-04-19 20:14:26 +0200
commit5c38c9d9ee99a3c8ebe9cd28108514f706fb4780 (patch)
treeafb592a8cdada1c6030418568c906778eb24d080 /src
parent6bb9e62b3140fa975c55d9934f82cc54745d5da0 (diff)
[style] remove unused assignment
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