diff --git a/action_map.yml b/action_map.yml index 7808df04..6da6fbdc 100644 --- a/action_map.yml +++ b/action_map.yml @@ -220,7 +220,6 @@ app: -n: full: --name help: Name of the list (default fapp) - pattern: '^[a-z0-9_]+$' ### app_listlists() listlists: diff --git a/yunohost_app.py b/yunohost_app.py index a0fcae45..b23184eb 100644 --- a/yunohost_app.py +++ b/yunohost_app.py @@ -56,8 +56,8 @@ def app_fetchlist(url=None, name=None): except OSError: os.makedirs(repo_path) if not url: - url = 'http://fapp.yunohost.org/app/list/raw' - name = "fapp" + url = 'http://app.yunohost.org/list.json' + name = 'yunohost' else: if not name: raise YunoHostError(22, _("You must indicate a name for your custom list"))