[Zope-Checkins] CVS: Zope3/lib/python/Zope/Server/VFS - PublisherFileSystem.py:1.3
Jim Fulton
jim@zope.com
Tue, 18 Jun 2002 10:47:08 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Server/VFS
In directory cvs.zope.org:/tmp/cvs-serv6342/lib/python/Zope/Server/VFS
Modified Files:
PublisherFileSystem.py
Log Message:
Renamed request getResponse method to read-only response property.
=== Zope3/lib/python/Zope/Server/VFS/PublisherFileSystem.py 1.2 => 1.3 ===
# Note that publish() calls close() on request, which deletes the
# response from the request, so that we need to keep track of it.
- response = request.getResponse()
+ response = request.response
publish(request)
return response.getResult()