Fixed a issue with the Mercurial status dialog.

Sat, 24 Apr 2010 13:45:56 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 24 Apr 2010 13:45:56 +0000
changeset 196
f7a39d6d1000
parent 195
2debcfe0e291
child 197
0e12ee787967

Fixed a issue with the Mercurial status dialog.

Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py	Fri Apr 23 17:35:08 2010 +0000
+++ b/Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py	Sat Apr 24 13:45:56 2010 +0000
@@ -257,7 +257,8 @@
                 line = str(self.process.readLine(), 
                         Preferences.getSystem("IOEncoding"), 
                         'replace')
-                if not line.startswith("  "):
+##                if not line.startswith("  "):
+                if line[0] in "ACIMR?!" and line[1] == " ":
                     status, path = line.strip().split(" ", 1)
                     self.__generateItem(status, path)
     

eric ide

mercurial