diff --git a/docs/changes.rst b/docs/changes.rst index 489a9b678..c5c8916e8 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Changelog 15.1.0 (unreleased) ------------------- +- Fix error when freshly installing a Plone site where `getNonInstallableProfiles` is missing. + Ref: https://github.com/plone/Products.CMFPlone/issues/3862 + [thet] - Updated styles. - Short report tweaks Ref: scrum-1295 diff --git a/src/euphorie/deployment/products.py b/src/euphorie/deployment/products.py index 96486c634..88aa0eea1 100644 --- a/src/euphorie/deployment/products.py +++ b/src/euphorie/deployment/products.py @@ -9,5 +9,8 @@ @implementer(INonInstallable) class HideEuphorieProducts: + def getNonInstallableProfiles(self): + return [] + def getNonInstallableProducts(self): return ["euphorie.content", "euphorie.client"]