252 Private method to process the lines of output. |
252 Private method to process the lines of output. |
253 |
253 |
254 @param line output line to be processed (string) |
254 @param line output line to be processed (string) |
255 """ |
255 """ |
256 if line.startswith(" "): |
256 if line.startswith(" "): |
257 l = line.strip().split() |
257 li = line.strip().split() |
258 changeset = l[-1] |
258 changeset = li[-1] |
259 del l[-1] |
259 del li[-1] |
260 name = " ".join(l) |
260 name = " ".join(li) |
261 self.__generateItem(changeset, name) |
261 self.__generateItem(changeset, name) |
262 |
262 |
263 def __readStderr(self): |
263 def __readStderr(self): |
264 """ |
264 """ |
265 Private slot to handle the readyReadStderr signal. |
265 Private slot to handle the readyReadStderr signal. |