Tue, 27 Aug 2013 18:22:35 +0200
Fixed the forgotten call to the parent class constructur in the E5Ftp class.
(grafted from 13f12f81cb7b43ea1560cbff852b363b9d5e7354)
E5Network/E5Ftp.py | file | annotate | diff | comparison | revisions |
--- a/E5Network/E5Ftp.py Mon Aug 26 19:33:40 2013 +0200 +++ b/E5Network/E5Ftp.py Tue Aug 27 18:22:35 2013 +0200 @@ -73,6 +73,8 @@ @param proxyAccount accounting info for the proxy (string) @param timeout timeout in seconds for blocking operations (integer) """ + super().__init__() + self.__timeout = timeout self.__proxyType = proxyType