summaryrefslogtreecommitdiff
path: root/src/leap/config/providerconfig.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-06-15 23:43:50 +0900
committerkali <kali@leap.se>2013-06-20 00:29:31 +0900
commit22afa7da7befa83f23eb039418edb39b0f5c2856 (patch)
tree9c254e364fb7ddefed55b6b60c16076aad827758 /src/leap/config/providerconfig.py
parent625a2d672885f5c86b1908c0b5a147188a82bb5d (diff)
Improve labels in the app
* Clarify use of EIP * Closes #2695
Diffstat (limited to 'src/leap/config/providerconfig.py')
-rw-r--r--src/leap/config/providerconfig.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/leap/config/providerconfig.py b/src/leap/config/providerconfig.py
index 68099ad4..6bbd7422 100644
--- a/src/leap/config/providerconfig.py
+++ b/src/leap/config/providerconfig.py
@@ -93,7 +93,10 @@ class ProviderConfig(BaseConfig):
Returns a string with the services supported by the current
provider, ready to be shown to the user.
"""
- return ", ".join(self.get_services())
+ services_str = ", ".join(self.get_services())
+ services_str = services_str.replace(
+ "openvpn", "Encrypted Internet")
+ return services_str
def get_ca_cert_path(self, about_to_download=False):
"""