In addition to the code fix above, I had to change the following line
in config.py.
replace this line:
from Products.CMFCore.CMFCorePermissions import View
with the following:
try: # New CMF
from Products.CMFCore.permissions import View
except ImportError: # Old CMF
from Products.CMFCore.CMFCorePermissions import View
#from Products.CMFCore import CMFCorePermissions
#from Products.CMFCore.CMFCorePermissions import setDefaultRoles, ListFolderContents
#from Products.CMFCore.CMFCorePermissions import AddPortalMember
from Products.CMFCore.permissions import setDefaultRoles, ListFolderContents, AddPortalMember
any ideas on mxmCalendarTypes?
in config.py.
replace this line:
from Products.CMFCore.CMFCorePermissions import View
with the following:
try: # New CMF
from Products.CMFCore.permissions import View
except ImportError: # Old CMF
from Products.CMFCore.CMFCorePermissions import View