src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
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 )

eric ide

mercurial