hgext/mq.py
changeset 11767 9b771b4ce2f3
parent 11730 7469ff872122
child 11789 e2bce1c717fa
equal deleted inserted replaced
11766:a65ea28269ef 11767:9b771b4ce2f3
  2661 
  2661 
  2662     if not name or opts.get('list'):
  2662     if not name or opts.get('list'):
  2663         current = _getcurrent()
  2663         current = _getcurrent()
  2664         for queue in _getqueues():
  2664         for queue in _getqueues():
  2665             ui.write('%s' % (queue,))
  2665             ui.write('%s' % (queue,))
  2666             if queue == current:
  2666             if queue == current and not ui.quiet:
  2667                 ui.write(_(' (active)\n'))
  2667                 ui.write(_(' (active)\n'))
  2668             else:
  2668             else:
  2669                 ui.write('\n')
  2669                 ui.write('\n')
  2670         return
  2670         return
  2671 
  2671