164 "990 Proxy usage requested, but no proxy host given.") |
164 "990 Proxy usage requested, but no proxy host given.") |
165 |
165 |
166 return super(E5Ftp, self).connect( |
166 return super(E5Ftp, self).connect( |
167 self.__proxyHost, self.__proxyPort, self.__timeout) |
167 self.__proxyHost, self.__proxyPort, self.__timeout) |
168 else: |
168 else: |
169 return super(E5Ftp, self).connect(self.__host, self.__port, self.__timeout) |
169 return super(E5Ftp, self).connect( |
|
170 self.__host, self.__port, self.__timeout) |
170 |
171 |
171 def login(self, user="", password="", acct=""): |
172 def login(self, user="", password="", acct=""): |
172 """ |
173 """ |
173 Public method to login to the FTP server. |
174 Public method to login to the FTP server. |
174 |
175 |