Show More
@@ -781,9 +781,9 b' def perfbdiff(ui, repo, file_, rev=None,' | |||
|
781 | 781 | if opts['alldata']: |
|
782 | 782 | # Load revisions associated with changeset. |
|
783 | 783 | ctx = repo[rev] |
|
784 | mtext = repo.manifest.revision(ctx.manifestnode()) | |
|
784 | mtext = repo.manifestlog._revlog.revision(ctx.manifestnode()) | |
|
785 | 785 | for pctx in ctx.parents(): |
|
786 | pman = repo.manifest.revision(pctx.manifestnode()) | |
|
786 | pman = repo.manifestlog._revlog.revision(pctx.manifestnode()) | |
|
787 | 787 | textpairs.append((pman, mtext)) |
|
788 | 788 | |
|
789 | 789 | # Load filelog revisions by iterating manifest delta. |
General Comments 0
You need to be logged in to leave comments.
Login now