57 a status message in case of non successful operation (string) |
57 a status message in case of non successful operation (string) |
58 """ |
58 """ |
59 self.shouldUpdate = False |
59 self.shouldUpdate = False |
60 |
60 |
61 if self.__client is None and not self.__useCommandLine: |
61 if self.__client is None and not self.__useCommandLine: |
62 if self.vcs.version >= (1, 9, 5): |
62 if self.vcs.version >= (2, 9, 9): |
63 # versions below that have a bug causing a second |
63 # versions below that have a bug causing a second |
64 # to not recognize changes to the status |
64 # instance to not recognize changes to the status |
65 client = HgClient(self.projectDir, "utf-8") |
65 client = HgClient(self.projectDir, "utf-8") |
66 ok, err = client.startServer() |
66 ok, err = client.startServer() |
67 if ok: |
67 if ok: |
68 self.__client = client |
68 self.__client = client |
69 else: |
69 else: |