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

Andreas Jung andreas@digicool.com
Thu, 9 May 2002 13:02:41 -0400


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

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


=== Zope/ZServer/medusa/ftp_server.py 1.17.16.2 => 1.17.16.3 ===
             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.