From e5d2bceb318b27f00c89ae096b13d6590980ee81 Mon Sep 17 00:00:00 2001 From: Kload Date: Wed, 29 May 2013 14:11:01 +0000 Subject: [PATCH] new list url --- action_map.yml | 1 - yunohost_app.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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"))