Show More
@@ -459,12 +459,12 def incoming(ui, repo, source, opts): | |||
|
459 | 459 | # use the created uncompressed bundlerepo |
|
460 | 460 | other = bundlerepo.bundlerepository(ui, repo.root, fname) |
|
461 | 461 | |
|
462 |
|
|
|
462 | chlist = other.changelog.nodesbetween(incoming, revs)[0] | |
|
463 | 463 | if opts.get('newest_first'): |
|
464 |
|
|
|
464 | chlist.reverse() | |
|
465 | 465 | displayer = cmdutil.show_changeset(ui, other, opts) |
|
466 | 466 | count = 0 |
|
467 |
for n in |
|
|
467 | for n in chlist: | |
|
468 | 468 | if limit is not None and count >= limit: |
|
469 | 469 | break |
|
470 | 470 | parents = [p for p in other.changelog.parents(n) if p != nullid] |
General Comments 0
You need to be logged in to leave comments.
Login now