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