Commit bb02363e authored by Jim Fulton's avatar Jim Fulton

Oops, included an experimental feature.

parent e5fa0565
...@@ -86,7 +86,6 @@ ...@@ -86,7 +86,6 @@
import string, sys, traceback import string, sys, traceback
from cStringIO import StringIO from cStringIO import StringIO
from DT_Util import parse_params, render_blocks, namespace, InstanceDict from DT_Util import parse_params, render_blocks, namespace, InstanceDict
from DT_Return import DTReturn
class Try: class Try:
"""Zope DTML Exception handling """Zope DTML Exception handling
...@@ -144,8 +143,6 @@ class Try: ...@@ -144,8 +143,6 @@ class Try:
# first we try to render the first block # first we try to render the first block
try: try:
return render_blocks(self.section, md) return render_blocks(self.section, md)
except DTReturn:
raise # pass through returns
except: except:
# but an error occurs.. save the info. # but an error occurs.. save the info.
t,v = sys.exc_info()[:2] t,v = sys.exc_info()[:2]
......
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