topics: add a missing trailing comma on list of flag
This will make the next changeset easier to read.
--- 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):