Skip to content

Commit

Permalink
Restore Plone 3 compatibility broken in r225476.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanholek committed Jan 4, 2011
1 parent d0d482d commit bc592ca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/plone/app/transmogrifier/reindexobject.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from zope.interface import classProvides, implements

from Products.CMFCore.CMFCatalogAware import CatalogAware
try:
from Products.CMFCore.CMFCatalogAware import CatalogAware # Plone 4
except ImportError:
from Products.CMFCore.CMFCatalogAware import CMFCatalogAware as CatalogAware

from collective.transmogrifier.interfaces import ISectionBlueprint
from collective.transmogrifier.interfaces import ISection
Expand Down

0 comments on commit bc592ca

Please sign in to comment.