diff --git a/product/ERP5Type/ZopePatch.py b/product/ERP5Type/ZopePatch.py index 7d85051460c602012eae6bad2427f334f669efa8..82fd6fb24f562a1a6ef54b2081f00c9e66c709b9 100644 --- a/product/ERP5Type/ZopePatch.py +++ b/product/ERP5Type/ZopePatch.py @@ -55,6 +55,7 @@ from Products.ERP5Type.patches import PythonScript from Products.ERP5Type.patches import MailTemplates from Products.ERP5Type.patches import http_server from Products.ERP5Type.patches import memcache_client +from Products.ERP5Type.patches import StateChangeInfoPatch # These symbols are required for backward compatibility from Products.ERP5Type.patches.PropertyManager import ERP5PropertyManager diff --git a/product/ERP5Type/__init__.py b/product/ERP5Type/__init__.py index b4dc5a4abda871b5ea43e3eb892d2efa4cd80822..35b3e6f1ca60b9f593fbd00310259c9599063062 100644 --- a/product/ERP5Type/__init__.py +++ b/product/ERP5Type/__init__.py @@ -45,7 +45,7 @@ document_classes = updateGlobals( this_module, permissions_module=Permissions, is_erp5_type=1 ) -import Interface, PropertySheet, ZopePatch, StateChangeInfoPatch, CMFCorePatch +import Interface, PropertySheet, ZopePatch, CMFCorePatch import interfaces import Products.Localizer # So that we make sure Globals.get_request is available diff --git a/product/ERP5Type/StateChangeInfoPatch.py b/product/ERP5Type/patches/StateChangeInfoPatch.py similarity index 100% rename from product/ERP5Type/StateChangeInfoPatch.py rename to product/ERP5Type/patches/StateChangeInfoPatch.py