From 2b3c368470ab315f11ca64044ee646b82e765b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Fri, 3 Apr 2020 22:16:28 +0200 Subject: [PATCH] Fix app_ssowatconf --- src/yunohost/app.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index b3971a989..0ec6dedae 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1306,10 +1306,6 @@ def app_ssowatconf(): redirected_regex = {main_domain + '/yunohost[\/]?$': 'https://' + main_domain + '/yunohost/sso/'} redirected_urls = {} - def _get_setting(settings, name): - s = settings.get(name, None) - return s.split(',') if s else [] - for app in _installed_apps(): app_settings = read_yaml(APPS_SETTING_PATH + app + '/settings.yml')