src/eric7/WebBrowser/Sync/FtpSyncHandler.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
equal deleted inserted replaced
11147:dee6e106b4d3 11148:15e30f0c76a8
109 self.__changeToStore() 109 self.__changeToStore()
110 self.__ftp.retrlines("LIST", self.__dirListCallback) 110 self.__ftp.retrlines("LIST", self.__dirListCallback)
111 self.__initialSync() 111 self.__initialSync()
112 self.__state = "idle" 112 self.__state = "idle"
113 self.__idleTimer.start() 113 self.__idleTimer.start()
114 except ftplib.all_errors + (EricFtpProxyError,) as err: # noqa: M530 114 except ftplib.all_errors + (EricFtpProxyError,) as err: # noqa: M-530
115 self.syncError.emit(str(err)) 115 self.syncError.emit(str(err))
116 116
117 def __connectAndLogin(self): 117 def __connectAndLogin(self):
118 """ 118 """
119 Private method to connect to the FTP server and log in. 119 Private method to connect to the FTP server and log in.

eric ide

mercurial