Fixed the forgotten call to the parent class constructur in the E5Ftp class. 5_3_x

Tue, 27 Aug 2013 18:22:35 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 27 Aug 2013 18:22:35 +0200
branch
5_3_x
changeset 2873
41fb830ddd09
parent 2871
4cbefb8c029b
child 2877
682ef11723c5

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

eric ide

mercurial