# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1503933041 -7200 # Node ID 736ab58641f025b5680346a16958176e723d8ddb # Parent b0b8cc3064b0bdebf85c6a76c7808ecb0cdae438 topics: add a missing trailing comma on list of flag This will make the next changeset easier to read. diff -r b0b8cc3064b0 -r 736ab58641f0 hgext3rd/topic/__init__.py --- 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):