mercurial/commands.py
changeset 4204 f9bbcebcacea
parent 4175 a2335e832e16
child 4207 7e1c8a565a4f
equal deleted inserted replaced
4176:fc12ac3755d5 4204:f9bbcebcacea
  1445               (modified or added or removed or deleted) and "+" or "")]
  1445               (modified or added or removed or deleted) and "+" or "")]
  1446 
  1446 
  1447     if not ui.quiet:
  1447     if not ui.quiet:
  1448 
  1448 
  1449         branch = util.tolocal(repo.workingctx().branch())
  1449         branch = util.tolocal(repo.workingctx().branch())
  1450         if branch:
  1450         if branch != 'default':
  1451             output.append("(%s)" % branch)
  1451             output.append("(%s)" % branch)
  1452 
  1452 
  1453         # multiple tags for a single parent separated by '/'
  1453         # multiple tags for a single parent separated by '/'
  1454         parenttags = ['/'.join(tags)
  1454         parenttags = ['/'.join(tags)
  1455                       for tags in map(repo.nodetags, parents) if tags]
  1455                       for tags in map(repo.nodetags, parents) if tags]