From 2b8206016151fc8cd75ce8cf47dbea03fb16a931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 8 Mar 2017 21:50:26 +0100 Subject: [PATCH] misc: ignore skeletons directory when looking for tenants (#15358) --- wcs/qommon/publisher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcs/qommon/publisher.py b/wcs/qommon/publisher.py index da772e30..6b4fd744 100644 --- a/wcs/qommon/publisher.py +++ b/wcs/qommon/publisher.py @@ -1039,7 +1039,7 @@ class QommonPublisher(Publisher, object): @classmethod def get_tenants(cls): for tenant in os.listdir(cls.APP_DIR): - if tenant in ('collectstatic', 'scripts'): + if tenant in ('collectstatic', 'scripts', 'skeletons'): continue if tenant.endswith('.invalid'): continue -- 2.11.0