Projet

Général

Profil

0001-misc-ignore-skeletons-directory-when-looking-for-ten.patch

Frédéric Péters, 08 mars 2017 21:50

Télécharger (900 octets)

Voir les différences:

Subject: [PATCH] misc: ignore skeletons directory when looking for tenants
 (#15358)

 wcs/qommon/publisher.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/qommon/publisher.py
1039 1039
    @classmethod
1040 1040
    def get_tenants(cls):
1041 1041
        for tenant in os.listdir(cls.APP_DIR):
1042
            if tenant in ('collectstatic', 'scripts'):
1042
            if tenant in ('collectstatic', 'scripts', 'skeletons'):
1043 1043
                continue
1044 1044
            if tenant.endswith('.invalid'):
1045 1045
                continue
1046
-