Mon, 17 Oct 2011 19:37:55 +0200
Running two instances of the Mercurial command line server does still not work. Changed the check to 1.9.5.
Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py | file | annotate | diff | comparison | revisions |
diff -r 4489ee4feb59 -r 759ef1e3569e Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py --- a/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py Mon Oct 17 19:36:51 2011 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py Mon Oct 17 19:37:55 2011 +0200 @@ -59,7 +59,7 @@ self.shouldUpdate = False if self.__client is None and not self.__useCommandLine: - if self.vcs.version >= (1, 9, 3): + if self.vcs.version >= (1, 9, 5): # versions below that have a bug causing a second # to not recognize changes to the status client = HgClient(self.projectDir, "utf-8")