mercurial/commands.py
changeset 33360 4a70985805c6
parent 33312 b5612dbe72a3
child 33413 a339027902c4
equal deleted inserted replaced
33359:583aa1e3658b 33360:4a70985805c6
  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: