Mercurial > evolve
changeset 2866:736ab58641f0
topics: add a missing trailing comma on list of flag
This will make the next changeset easier to read.
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 28 Aug 2017 17:10:41 +0200 |
parents | b0b8cc3064b0 |
children | 5c0b6af37b21 |
files | hgext3rd/topic/__init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext3rd/topic/__init__.py Tue Aug 29 14:19:31 2017 +0200 +++ b/hgext3rd/topic/__init__.py Mon Aug 28 17:10:41 2017 +0200 @@ -311,7 +311,7 @@ ('', 'clear', False, 'clear active topic if any'), ('r', 'rev', '', 'revset of existing revisions', _('REV')), ('l', 'list', False, 'show the stack of changeset in the topic'), - ('', 'age', False, 'show when you last touched the topics') + ('', 'age', False, 'show when you last touched the topics'), ] + commands.formatteropts, _('hg topics [TOPIC]')) def topics(ui, repo, topic='', clear=False, rev=None, list=False, **opts):