# HG changeset patch # User Sean Farley # Date 1458683495 25200 # Node ID 7b7f073ed05efeb69081b0c886c40a746c245df6 # Parent c0081578681324dca826635f25f9f01b54c421a6 style: update __init__.py diff -r c00815786813 -r 7b7f073ed05e hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Wed May 11 16:06:58 2016 +0200 +++ b/hgext3rd/topic/__init__.py Tue Mar 22 14:51:35 2016 -0700 @@ -47,9 +47,9 @@ colortable = {'topic.stack.index': 'yellow', 'topic.stack.state.base': 'dim', 'topic.stack.state.clean': 'green', - 'topic.stack.index.current': 'cyan', # random pick - 'topic.stack.state.current': 'cyan bold', # random pick - 'topic.stack.desc.current': 'cyan', # random pick + 'topic.stack.index.current': 'cyan', # random pick + 'topic.stack.state.current': 'cyan bold', # random pick + 'topic.stack.desc.current': 'cyan', # random pick 'topic.stack.state.unstable': 'red', } @@ -182,9 +182,9 @@ listnames=lambda repo: repo.topics)) @command('topics [TOPIC]', [ - ('', 'clear', False, 'clear active topic if any'), - ('', 'change', '', 'revset of existing revisions to change topic'), - ('l', 'list', False, 'show the stack of changeset in the topic'), + ('', 'clear', False, 'clear active topic if any'), + ('', 'change', '', 'revset of existing revisions to change topic'), + ('l', 'list', False, 'show the stack of changeset in the topic'), ] + commands.formatteropts) def topics(ui, repo, topic='', clear=False, change=None, list=False, **opts): """View current topic, set current topic, or see all topics."""