34 |
39 |
35 @param repoPath root directory of the repository (string) |
40 @param repoPath root directory of the repository (string) |
36 @param encoding encoding to be used by the command server (string) |
41 @param encoding encoding to be used by the command server (string) |
37 @param parent reference to the parent object (QObject) |
42 @param parent reference to the parent object (QObject) |
38 """ |
43 """ |
39 super().__init__(parent) |
44 super(HgClient, self).__init__(parent) |
40 |
45 |
41 self.__server = None |
46 self.__server = None |
42 self.__started = False |
47 self.__started = False |
43 self.__version = None |
48 self.__version = None |
44 self.__encoding = Preferences.getSystem("IOEncoding") |
49 self.__encoding = Preferences.getSystem("IOEncoding") |