Show More
@@ -48,7 +48,7 b' def filerevs(repo, path, start, stop):' | |||
|
48 | 48 | parents = [f.linkrev() for f in fctx.parents() if f.path() == path] |
|
49 | 49 | rev = fctx.rev() |
|
50 | 50 | if rev <= start: |
|
51 | yield (rev, CHANGESET, fctx, sorted(parents)) | |
|
51 | yield (rev, CHANGESET, fctx.changectx(), sorted(parents)) | |
|
52 | 52 | if rev <= stop: |
|
53 | 53 | break |
|
54 | 54 | filerev -= 1 |
General Comments 0
You need to be logged in to leave comments.
Login now