Commit a50bc207 authored by Jim Fulton's avatar Jim Fulton

Fixed a nasty bug in code that breaks circular references arizing from

acquisition.
parent da5be84f
...@@ -362,7 +362,7 @@ Publishing a module using CGI ...@@ -362,7 +362,7 @@ Publishing a module using CGI
containing the module to be published) to the module name in the containing the module to be published) to the module name in the
cgi-bin directory. cgi-bin directory.
$Id: Publish.py,v 1.71 1998/01/05 19:42:30 jim Exp $""" $Id: Publish.py,v 1.72 1998/01/07 22:57:26 jim Exp $"""
#' #'
# Copyright # Copyright
# #
...@@ -417,7 +417,7 @@ $Id: Publish.py,v 1.71 1998/01/05 19:42:30 jim Exp $""" ...@@ -417,7 +417,7 @@ $Id: Publish.py,v 1.71 1998/01/05 19:42:30 jim Exp $"""
# See end of file for change log. # See end of file for change log.
# #
########################################################################## ##########################################################################
__version__='$Revision: 1.71 $'[11:-2] __version__='$Revision: 1.72 $'[11:-2]
def main(): def main():
...@@ -1337,7 +1337,7 @@ def publish_module(module_name, ...@@ -1337,7 +1337,7 @@ def publish_module(module_name,
response = publisher.response response = publisher.response
request=publisher.request request=publisher.request
try: response = publisher.publish(module_name,after_list,debug=debug) try: response = publisher.publish(module_name,after_list,debug=debug)
finally: del request.other finally: request.other={}
except SystemExit: except SystemExit:
must_die=1 must_die=1
response.exception(must_die) response.exception(must_die)
......
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