Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py

changeset 1369
759ef1e3569e
parent 1282
c5b7b444942d
child 1423
dd5f9aa16bd2
equal deleted inserted replaced
1368:4489ee4feb59 1369:759ef1e3569e
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, 3): 62 if self.vcs.version >= (1, 9, 5):
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