Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py

changeset 197
0e12ee787967
parent 196
f7a39d6d1000
child 198
7ab8e126f404
equal deleted inserted replaced
196:f7a39d6d1000 197:0e12ee787967
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(" "):
261 if line[0] in "ACIMR?!" and line[1] == " ": 260 if line[0] in "ACIMR?!" and line[1] == " ":
262 status, path = line.strip().split(" ", 1) 261 status, path = line.strip().split(" ", 1)
263 self.__generateItem(status, path) 262 self.__generateItem(status, path)
264 263
265 def __readStderr(self): 264 def __readStderr(self):

eric ide

mercurial