Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py

changeset 1263
1b6054a9b668
parent 1262
3a359afecc10
child 1282
c5b7b444942d
equal deleted inserted replaced
1262:3a359afecc10 1263:1b6054a9b668
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.versionStr >= "1.9.3": 62 if self.vcs.version >= (1, 9, 3):
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 # 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:

eric ide

mercurial