Fixed an issue with the Mercurial status monitor (caused by the Mercurial command server not recognizing changes made outside).

Sat, 05 Nov 2011 11:12:17 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Nov 2011 11:12:17 +0100
changeset 1423
dd5f9aa16bd2
parent 1422
47f1dffa398e
child 1425
dedba69cb847

Fixed an issue with the Mercurial status monitor (caused by the Mercurial command server not recognizing changes made outside).

Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py	Sat Nov 05 11:08:35 2011 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py	Sat Nov 05 11:12:17 2011 +0100
@@ -59,9 +59,9 @@
         self.shouldUpdate = False
         
         if self.__client is None and not self.__useCommandLine:
-            if self.vcs.version >= (1, 9, 5):
+            if self.vcs.version >= (2, 9, 9):
                 # versions below that have a bug causing a second
-                # to not recognize changes to the status
+                # instance to not recognize changes to the status
                 client = HgClient(self.projectDir, "utf-8")
                 ok, err = client.startServer()
                 if ok:

eric ide

mercurial