changeset 1963:7b7f073ed05e

style: update __init__.py
author Sean Farley <sean@farley.io>
date Tue, 22 Mar 2016 14:51:35 -0700
parents c00815786813
children 43f3c7ce73be
files hgext3rd/topic/__init__.py
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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."""