[Checkins] SVN: zope.error/trunk/ Use zope.container instead of zope.app.container.

Martijn Faassen faassen at infrae.com
Thu Jan 29 13:54:06 EST 2009


Log message for revision 95499:
  Use zope.container instead of zope.app.container.
  

Changed:
  U   zope.error/trunk/CHANGES.txt
  U   zope.error/trunk/setup.py
  U   zope.error/trunk/src/zope/error/error.py

-=-
Modified: zope.error/trunk/CHANGES.txt
===================================================================
--- zope.error/trunk/CHANGES.txt	2009-01-29 18:53:32 UTC (rev 95498)
+++ zope.error/trunk/CHANGES.txt	2009-01-29 18:54:06 UTC (rev 95499)
@@ -2,12 +2,16 @@
 CHANGES
 =======
 
+Version 3.6 (unreleased)
+------------------------
+
+- Use zope.container instead of zope.app.container
+
 Version 3.5.1 (2007-09-27)
 --------------------------
 
 - rebumped to replace faulty egg
 
-
 Version 3.5.0 
 -------------
 

Modified: zope.error/trunk/setup.py
===================================================================
--- zope.error/trunk/setup.py	2009-01-29 18:53:32 UTC (rev 95498)
+++ zope.error/trunk/setup.py	2009-01-29 18:54:06 UTC (rev 95499)
@@ -24,7 +24,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.error',
-    version = '3.5.1',
+    version = '3.6',
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
     description = "An error reporting utility for Zope3",

Modified: zope.error/trunk/src/zope/error/error.py
===================================================================
--- zope.error/trunk/src/zope/error/error.py	2009-01-29 18:53:32 UTC (rev 95498)
+++ zope.error/trunk/src/zope/error/error.py	2009-01-29 18:54:06 UTC (rev 95499)
@@ -30,7 +30,7 @@
 from zope.exceptions.exceptionformatter import format_exception
 from zope.interface import implements
 
-from zope.app.container.contained import Contained
+from zope.container.contained import Contained
 from zope.error.interfaces import IErrorReportingUtility
 from zope.error.interfaces import ILocalErrorReportingUtility
 



More information about the Checkins mailing list