Show More
@@ -647,11 +647,10 b' def _buildstatus(ctx, tree, basectx=None' | |||
|
647 | 647 | unknown = _intree(['unknown'], tree) |
|
648 | 648 | ignored = _intree(['ignored'], tree) |
|
649 | 649 | |
|
650 | r = ctx.repo() | |
|
651 | 650 | if basectx is None: |
|
652 | 651 | basectx = ctx.p1() |
|
653 | return r.status(basectx, ctx, | |
|
654 |
|
|
|
652 | return basectx.status(ctx, listunknown=unknown, listignored=ignored, | |
|
653 | listclean=True) | |
|
655 | 654 | else: |
|
656 | 655 | return None |
|
657 | 656 |
General Comments 0
You need to be logged in to leave comments.
Login now