merged with trunk
[odoo/odoo.git] / addons / document_ftp / ftpserver / __init__.py
old mode 100644 (file)
new mode 100755 (executable)
index eef04d3..d110267
@@ -59,6 +59,7 @@ if HOST.lower() == 'none':
 else:
     netsvc.Logger().notifyChannel("FTP", netsvc.LOG_INFO, "\n Serving FTP on %s:%s\n" % (HOST, PORT))
     ds = ftp_server()
+    ds.daemon = True
     ds.start()
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: