diff options
Diffstat (limited to 'subcmds/branches.py')
-rw-r--r-- | subcmds/branches.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subcmds/branches.py b/subcmds/branches.py index b4894ec8..9709f7f0 100644 --- a/subcmds/branches.py +++ b/subcmds/branches.py | |||
@@ -19,6 +19,7 @@ import sys | |||
19 | from color import Coloring | 19 | from color import Coloring |
20 | from command import Command | 20 | from command import Command |
21 | 21 | ||
22 | |||
22 | class BranchColoring(Coloring): | 23 | class BranchColoring(Coloring): |
23 | def __init__(self, config): | 24 | def __init__(self, config): |
24 | Coloring.__init__(self, config, 'branch') | 25 | Coloring.__init__(self, config, 'branch') |
@@ -26,6 +27,7 @@ class BranchColoring(Coloring): | |||
26 | self.local = self.printer('local') | 27 | self.local = self.printer('local') |
27 | self.notinproject = self.printer('notinproject', fg='red') | 28 | self.notinproject = self.printer('notinproject', fg='red') |
28 | 29 | ||
30 | |||
29 | class BranchInfo(object): | 31 | class BranchInfo(object): |
30 | def __init__(self, name): | 32 | def __init__(self, name): |
31 | self.name = name | 33 | self.name = name |