summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2017-04-06 18:25:17 +0200
committerRuben Pollan <meskio@sindominio.net>2017-04-06 18:25:17 +0200
commit88e2a321473a9f7fc36ea2d68d84261835d9ce8d (patch)
treed9aecabb3427772d928fc035104a7f440253beb8
parent9883c75446187af0f88e03af75b42e8d3773fa18 (diff)
[bug] last_vpn path now is ~/.config/leap/last_vpn
It used to be in the providers folder, but this was missleading bonafide to list it as a provider. I think it's harder to write work arounds to have this file in this folder than to have it somewhere else. - Resolves: #8818
-rw-r--r--src/leap/bitmask/vpn/service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index 5bbcd851..f11a37bc 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -37,7 +37,7 @@ from leap.common.certs import get_cert_time_boundaries
class VPNService(HookableService):
name = 'vpn'
- _last_vpn_path = os.path.join('leap', 'providers', 'last_vpn')
+ _last_vpn_path = os.path.join('leap', 'last_vpn')
def __init__(self, basepath=None):
"""