[Zope-Checkins] CVS: Zope/ZServer/medusa - ftp_server.py:1.18.60.2

Andreas Jung andreas@digicool.com
Thu, 9 May 2002 12:57:39 -0400


Update of /cvs-repository/Zope/ZServer/medusa
In directory cvs.zope.org:/tmp/cvs-serv5116/ZServer/medusa

Modified Files:
      Tag: Zope-2_5-branch
	ftp_server.py 
Log Message:
      - Collector 386: workaround for hanging FTP connections
        with NcFTP


=== Zope/ZServer/medusa/ftp_server.py 1.18.60.1 => 1.18.60.2 ===
             self.push ('214-The following commands are recognized\r\n')
             self.push_with_producer (producers.lines_producer (help_lines))
-            self.push ('214\r\n')
+            self.push ('214 \r\n')
         else:
-            self.push ('214-\r\n\tHelp Unavailable\r\n214\r\n')
+            self.push ('214-\r\n\tHelp Unavailable\r\n214 \r\n')
             
 class ftp_server (asyncore.dispatcher):
         # override this to spawn a different FTP channel class.