Show More
@@ -622,9 +622,7 def _children(repo, narrow, parentset): | |||
|
622 | 622 | return baseset() |
|
623 | 623 | cs = set() |
|
624 | 624 | pr = repo.changelog.parentrevs |
|
625 | # XXX this should be 'parentset.min()' assuming 'parentset' is a smartset | |
|
626 | # (and if it is not, it should.) | |
|
627 | minrev = min(parentset) | |
|
625 | minrev = parentset.min() | |
|
628 | 626 | for r in narrow: |
|
629 | 627 | if r <= minrev: |
|
630 | 628 | continue |
General Comments 0
You need to be logged in to leave comments.
Login now