[fix] Modify app list URL to have a proper SSL certificate

This commit is contained in:
kload 2015-10-02 10:11:53 -04:00
parent 33b749a9f8
commit 4e3968fd96

View file

@ -66,7 +66,7 @@ def app_fetchlist(url=None, name=None):
Keyword argument: Keyword argument:
name -- Name of the list (default yunohost) name -- Name of the list (default yunohost)
url -- URL of remote JSON list (default https://app.yunohost.org/list.json) url -- URL of remote JSON list (default https://yunohost.org/list.json)
""" """
# Create app path if not exists # Create app path if not exists
@ -74,7 +74,7 @@ def app_fetchlist(url=None, name=None):
except OSError: os.makedirs(repo_path) except OSError: os.makedirs(repo_path)
if url is None: if url is None:
url = 'https://app.yunohost.org/list.json' url = 'https://yunohost.org/list.json'
name = 'yunohost' name = 'yunohost'
else: else:
if name is None: if name is None: