--- 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)