Commit 3c63d0b0 authored by Hanno Schlichting's avatar Hanno Schlichting

Deal with deprecation warnings for Zope 2.13.

parent 2ed90f57
......@@ -4,6 +4,8 @@ Products.DCWorkflow Changelog
2.3.0-alpha (unreleased)
------------------------
- Deal with deprecation warnings for Zope 2.13.
2.2.0-beta (2009-12-06)
-----------------------
......
......@@ -15,12 +15,17 @@
$Id$
"""
from Products.Five import zcml
from Testing.ZopeTestCase.layer import ZopeLite
from zope.testing.cleanup import cleanUp
from Products.CMFCore.testing import _DUMMY_ZCML
# BBB for Zope 2.12
try:
from Zope2.App import zcml
except ImportError:
from Products.Five import zcml
class ExportImportZCMLLayer(ZopeLite):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment