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