Mercurial > hg-stable
comparison mercurial/commands.py @ 18623:0027a5cec9d0
summary: add missing space for updated active bookmark display
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sat, 09 Feb 2013 22:54:34 +0000 |
parents | f9eebf5629fa |
children | 8eb3408bf005 |
comparison
equal
deleted
inserted
replaced
18622:f9eebf5629fa | 18623:0027a5cec9d0 |
---|---|
5577 if current is not None: | 5577 if current is not None: |
5578 if current in marks: | 5578 if current in marks: |
5579 ui.write(' *' + current, label='bookmarks.current') | 5579 ui.write(' *' + current, label='bookmarks.current') |
5580 marks.remove(current) | 5580 marks.remove(current) |
5581 else: | 5581 else: |
5582 ui.write('[%s]' % current, label='bookmarks.current') | 5582 ui.write(' [%s]' % current, label='bookmarks.current') |
5583 for m in marks: | 5583 for m in marks: |
5584 ui.write(' ' + m, label='log.bookmark') | 5584 ui.write(' ' + m, label='log.bookmark') |
5585 ui.write('\n', label='log.bookmark') | 5585 ui.write('\n', label='log.bookmark') |
5586 | 5586 |
5587 st = list(repo.status(unknown=True))[:6] | 5587 st = list(repo.status(unknown=True))[:6] |