Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py

changeset 196
f7a39d6d1000
parent 178
dd9f0bca5e2f
child 197
0e12ee787967
equal deleted inserted replaced
195:2debcfe0e291 196:f7a39d6d1000
255 255
256 while self.process.canReadLine(): 256 while self.process.canReadLine():
257 line = str(self.process.readLine(), 257 line = str(self.process.readLine(),
258 Preferences.getSystem("IOEncoding"), 258 Preferences.getSystem("IOEncoding"),
259 'replace') 259 'replace')
260 if not line.startswith(" "): 260 ## if not line.startswith(" "):
261 if line[0] in "ACIMR?!" and line[1] == " ":
261 status, path = line.strip().split(" ", 1) 262 status, path = line.strip().split(" ", 1)
262 self.__generateItem(status, path) 263 self.__generateItem(status, path)
263 264
264 def __readStderr(self): 265 def __readStderr(self):
265 """ 266 """

eric ide

mercurial