equal
deleted
inserted
replaced
178 nodeids = [] |
178 nodeids = [] |
179 id = 0 |
179 id = 0 |
180 ui.progress(_('building'), id, unit=_('revisions'), total=total) |
180 ui.progress(_('building'), id, unit=_('revisions'), total=total) |
181 for type, data in dagparser.parsedag(text): |
181 for type, data in dagparser.parsedag(text): |
182 if type == 'n': |
182 if type == 'n': |
183 ui.note(('node %s\n' % str(data))) |
183 ui.note(('node %s\n' % pycompat.bytestr(data))) |
184 id, ps = data |
184 id, ps = data |
185 |
185 |
186 files = [] |
186 files = [] |
187 filecontent = {} |
187 filecontent = {} |
188 |
188 |