equal
deleted
inserted
replaced
2773 taglist = [] |
2773 taglist = [] |
2774 for p in parents: |
2774 for p in parents: |
2775 taglist.extend(p.tags()) |
2775 taglist.extend(p.tags()) |
2776 |
2776 |
2777 dirty = "" |
2777 dirty = "" |
2778 if (any(repo.status()) |
2778 if ctx.dirty(missing=True, merge=False, branch=False): |
2779 or any(ctx.sub(s).dirty() for s in ctx.substate)): |
|
2780 dirty = '+' |
2779 dirty = '+' |
2781 fm.data(dirty=dirty) |
2780 fm.data(dirty=dirty) |
2782 |
2781 |
2783 hexoutput = [hexfunc(p.node()) for p in parents] |
2782 hexoutput = [hexfunc(p.node()) for p in parents] |
2784 if default or id: |
2783 if default or id: |