[Checkins] SVN: zope.app.module/trunk/ use zope.container instead of zope.app.container

Wolfgang Schnerring wosc at wosc.de
Thu Jan 29 13:16:05 EST 2009


Log message for revision 95470:
  use zope.container instead of zope.app.container
  

Changed:
  U   zope.app.module/trunk/CHANGES.txt
  U   zope.app.module/trunk/setup.py
  U   zope.app.module/trunk/src/zope/app/module/manager.py

-=-
Modified: zope.app.module/trunk/CHANGES.txt
===================================================================
--- zope.app.module/trunk/CHANGES.txt	2009-01-29 18:13:21 UTC (rev 95469)
+++ zope.app.module/trunk/CHANGES.txt	2009-01-29 18:16:05 UTC (rev 95470)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+3.4.1 (unreleased)
+------------------
+
+- Use zope.container instead of zope.app.container.
+
 3.4.0 (2007-10-25)
 ------------------
 

Modified: zope.app.module/trunk/setup.py
===================================================================
--- zope.app.module/trunk/setup.py	2009-01-29 18:13:21 UTC (rev 95469)
+++ zope.app.module/trunk/setup.py	2009-01-29 18:16:05 UTC (rev 95470)
@@ -59,6 +59,7 @@
       install_requires=['setuptools',
                         'zope.interface',
                         'zope.component',
+                        'zope.container',
                         'zope.schema',
                         'zope.filerepresentation',
                         'ZODB3',

Modified: zope.app.module/trunk/src/zope/app/module/manager.py
===================================================================
--- zope.app.module/trunk/src/zope/app/module/manager.py	2009-01-29 18:13:21 UTC (rev 95469)
+++ zope.app.module/trunk/src/zope/app/module/manager.py	2009-01-29 18:16:05 UTC (rev 95470)
@@ -22,7 +22,7 @@
 import zope.component
 
 from zope.filerepresentation.interfaces import IFileFactory
-from zope.app.container.contained import Contained
+from zope.container.contained import Contained
 from zope.app.module.interfaces import IModuleManager
 from zope.app.module import ZopeModuleRegistry
 



More information about the Checkins mailing list