(self)
| 2416 | raise |
| 2417 | |
| 2418 | def init(self): |
| 2419 | import ftplib |
| 2420 | self.busy = 0 |
| 2421 | self.ftp = ftplib.FTP() |
| 2422 | self.ftp.connect(self.host, self.port, self.timeout) |
| 2423 | self.ftp.login(self.user, self.passwd) |
| 2424 | _target = '/'.join(self.dirs) |
| 2425 | self.ftp.cwd(_target) |
| 2426 | |
| 2427 | def retrfile(self, file, type): |
| 2428 | import ftplib |