Commit e09400ae authored by Jens Vagelpohl's avatar Jens Vagelpohl

- 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.
parent 49384776
...@@ -162,6 +162,10 @@ Features Added ...@@ -162,6 +162,10 @@ Features Added
Bugs Fixed 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 - LP #142874: Naming objects ``URL`` or ``URL1`` broke several ZMI
views. views.
......
...@@ -55,7 +55,7 @@ def debug(*args, **kw): ...@@ -55,7 +55,7 @@ def debug(*args, **kw):
"""Utility to try a Zope request using the interactive interpreter""" """Utility to try a Zope request using the interactive interpreter"""
startup() startup()
import ZPublisher import ZPublisher
return ZPublisher.test('Zope', *args, **kw) return ZPublisher.test('Zope2', *args, **kw)
from Zope2.Startup.run import configure from Zope2.Startup.run import configure
......
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