summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/vpn/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r--src/leap/bitmask/vpn/service.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index 71fb8651..f4af3036 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -194,13 +194,7 @@ class VPNService(HookableService):
config = yield bonafide.do_provider_read(provider, 'eip')
except ValueError:
continue
- locations = config.locations
- info = tuple([
- ('[%s]' % locations[loc]['country_code'],
- locations[loc]['name'],
- '(UTC%s)' % locations[loc]['timezone'])
- for loc in locations])
- provider_dict[provider] = info
+ provider_dict[provider] = config.locations
defer.returnValue(provider_dict)
@defer.inlineCallbacks