[Zope-Checkins] SVN: Zope/trunk/ - LP #143261: The (very old-fashioned) Zope2.debug interactive request
Jens Vagelpohl
jens at dataflake.org
Tue May 25 07:58:57 EDT 2010
Log message for revision 112688:
- LP #143261: The (very old-fashioned) Zope2.debug interactive request
debugger still referred to the toplevel module ``Zope``, which was
renamed to ``Zope2`` a long time ago.
Changed:
U Zope/trunk/doc/CHANGES.rst
U Zope/trunk/src/Zope2/__init__.py
-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst 2010-05-25 11:58:16 UTC (rev 112687)
+++ Zope/trunk/doc/CHANGES.rst 2010-05-25 11:58:57 UTC (rev 112688)
@@ -162,6 +162,10 @@
Bugs Fixed
++++++++++
+- LP #143261: The (very old-fashioned) Zope2.debug interactive request
+ debugger still referred to the toplevel module ``Zope``, which was
+ renamed to ``Zope2`` a long time ago.
+
- LP #142874: Naming objects ``URL`` or ``URL1`` broke several ZMI
views.
Modified: Zope/trunk/src/Zope2/__init__.py
===================================================================
--- Zope/trunk/src/Zope2/__init__.py 2010-05-25 11:58:16 UTC (rev 112687)
+++ Zope/trunk/src/Zope2/__init__.py 2010-05-25 11:58:57 UTC (rev 112688)
@@ -55,7 +55,7 @@
"""Utility to try a Zope request using the interactive interpreter"""
startup()
import ZPublisher
- return ZPublisher.test('Zope', *args, **kw)
+ return ZPublisher.test('Zope2', *args, **kw)
from Zope2.Startup.run import configure
More information about the Zope-Checkins
mailing list