From 4e3968fd96b59c61a53daf8820a3399872d9df8f Mon Sep 17 00:00:00 2001 From: kload Date: Fri, 2 Oct 2015 10:11:53 -0400 Subject: [PATCH] [fix] Modify app list URL to have a proper SSL certificate --- lib/yunohost/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/yunohost/app.py b/lib/yunohost/app.py index 01c93960d..bb267cfb7 100644 --- a/lib/yunohost/app.py +++ b/lib/yunohost/app.py @@ -66,7 +66,7 @@ def app_fetchlist(url=None, name=None): Keyword argument: 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 @@ -74,7 +74,7 @@ def app_fetchlist(url=None, name=None): except OSError: os.makedirs(repo_path) if url is None: - url = 'https://app.yunohost.org/list.json' + url = 'https://yunohost.org/list.json' name = 'yunohost' else: if name is None: