summaryrefslogtreecommitdiff
path: root/src/leap/config
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@yahoo.com.ar>2013-06-28 10:59:56 -0300
committerIvan Alejandro <ivanalejandro0@yahoo.com.ar>2013-06-28 12:24:22 -0300
commit8ff98b63c077af25fb58dc73750e7765c35ce2f0 (patch)
treeaeb686b14adf006380911f645f35af5975dc1897 /src/leap/config
parent90c4d00b63edb379e5b0101ad870b528328247b1 (diff)
Bugfix: Update available/supported implementation.
Closes bug #3032.
Diffstat (limited to 'src/leap/config')
-rw-r--r--src/leap/config/providerconfig.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/leap/config/providerconfig.py b/src/leap/config/providerconfig.py
index 94568c27..8b72153a 100644
--- a/src/leap/config/providerconfig.py
+++ b/src/leap/config/providerconfig.py
@@ -24,7 +24,6 @@ import os
from leap.common.check import leap_assert
from leap.common.config.baseconfig import BaseConfig, LocalizedKey
from leap.config.provider_spec import leap_provider_spec
-from leap.services import get_available
logger = logging.getLogger(__name__)
@@ -81,17 +80,16 @@ class ProviderConfig(BaseConfig):
def get_services(self):
"""
- Returns a list with the services supported by the
- current provider.
+ Returns a list with the available services in the current provider.
:rtype: list
"""
- services = get_available(self._safe_get_value("services"))
+ services = self._safe_get_value("services")
return services
def get_services_string(self):
"""
- Returns a string with the services supported by the current
+ Returns a string with the available services in the current
provider, ready to be shown to the user.
"""
services_str = ", ".join(self.get_services())