60 |
59 |
61 if self.__client is None and not self.__useCommandLine: |
60 if self.__client is None and not self.__useCommandLine: |
62 if self.vcs.version >= (2, 9, 9): |
61 if self.vcs.version >= (2, 9, 9): |
63 # versions below that have a bug causing a second |
62 # versions below that have a bug causing a second |
64 # instance to not recognize changes to the status |
63 # instance to not recognize changes to the status |
|
64 from .HgClient import HgClient |
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: |