[Zope3-checkins] CVS: Zope3/src/zope/publisher - ftp.py:1.2

Jim Fulton jim@zope.com
Fri, 7 Feb 2003 10:43:58 -0500


Update of /cvs-repository/Zope3/src/zope/publisher
In directory cvs.zope.org:/tmp/cvs-serv22000

Modified Files:
	ftp.py 
Log Message:
Changed to use IFTPPresentation as the presentation type.


=== Zope3/src/zope/publisher/ftp.py 1.1 => 1.2 ===
--- Zope3/src/zope/publisher/ftp.py:1.1	Mon Feb  3 10:08:51 2003
+++ Zope3/src/zope/publisher/ftp.py	Fri Feb  7 10:43:57 2003
@@ -16,7 +16,7 @@
 $Id$
 """
 
-from zope.publisher.interfaces.ftp import IFTPView
+from zope.publisher.interfaces.ftp import IFTPPresentation
 from zope.publisher.interfaces.ftp import IFTPCredentials
 from zope.publisher.base import BaseResponse, BaseRequest
 
@@ -38,7 +38,7 @@
 class FTPRequest(BaseRequest):
     __implements__ = BaseRequest.__implements__, IFTPCredentials
 
-    _presentation_type = IFTPView
+    _presentation_type = IFTPPresentation
 
     __slots__ = '_auth'