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