cybertools/z2/intid/lsm.py
helmutm d1110c410e include slightly modified copy of five.intid
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3685 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-01-14 12:12:30 +00:00

13 lines
324 B
Python

"""
five.localsitemanager/PersistentComponents compatibility support.
"""
try:
from five.localsitemanager import (
make_objectmanager_site as make_site, )
except ImportError:
USE_LSM = False
from Products.Five.site.localsite import (
enableLocalSiteHook as make_site, )
else:
USE_LSM = True