[Zope-Checkins] CVS: Zope/lib/python/ZPublisher - HTTPResponse.py:1.73

Fred L. Drake, Jr. fred@zope.com
Tue, 18 Mar 2003 16:39:07 -0500


Update of /cvs-repository/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv27677/ZPublisher

Modified Files:
	HTTPResponse.py 
Log Message:
Merge from the new-install-branch:  work with the slightly modified ZServer
package.


=== Zope/lib/python/ZPublisher/HTTPResponse.py 1.72 => 1.73 ===
--- Zope/lib/python/ZPublisher/HTTPResponse.py:1.72	Sun Dec 22 13:31:46 2002
+++ Zope/lib/python/ZPublisher/HTTPResponse.py	Tue Mar 18 16:39:06 2003
@@ -190,7 +190,8 @@
     def _requestShutdown(self, exitCode=0):
         """Request that the server shut down with exitCode after fulfilling
            the current request."""
-        sys.ZServerExitCode = exitCode
+        import ZServer
+        ZServer.exit_code = exitCode
         self._shutdown_flag = 1
 
     def _shutdownRequested(self):