212 |
212 |
213 @param line output line to be processed |
213 @param line output line to be processed |
214 @type str |
214 @type str |
215 """ |
215 """ |
216 match = self.__annotateRe.match(line) |
216 match = self.__annotateRe.match(line) |
217 author, rev, changeset, date, file, marker, text = match.groups() |
217 author, rev, changeset, date, _file, marker, text = match.groups() |
218 if marker == ":": |
218 if marker == ":": |
219 marker = "" |
219 marker = "" |
220 self.__generateItem( |
220 self.__generateItem( |
221 marker, rev.strip(), changeset.strip(), author.strip(), date.strip(), text |
221 marker, rev.strip(), changeset.strip(), author.strip(), date.strip(), text |
222 ) |
222 ) |