From d2c6397f820acdec696e4b3224cef34434b514f6 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 30 Oct 2020 14:26:35 +0100 Subject: [PATCH] Fix typo in previous fix ;[ --- src/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index d1f0ac234..2fd5dc23f 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -299,7 +299,7 @@ def app_map(app=None, raw=False, user=None): if not raw: result[url] = perm_label else: - if "/" in url.split("/", 1): + if "/" in url: perm_domain, perm_path = url.split("/", 1) perm_path = '/' + perm_path else: