diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -232,7 +232,7 @@ class ReviewableBranch(object): | |||
232 | class StatusColoring(Coloring): | 232 | class StatusColoring(Coloring): |
233 | 233 | ||
234 | def __init__(self, config): | 234 | def __init__(self, config): |
235 | Coloring.__init__(self, config, 'status') | 235 | super().__init__(config, 'status') |
236 | self.project = self.printer('header', attr='bold') | 236 | self.project = self.printer('header', attr='bold') |
237 | self.branch = self.printer('header', attr='bold') | 237 | self.branch = self.printer('header', attr='bold') |
238 | self.nobranch = self.printer('nobranch', fg='red') | 238 | self.nobranch = self.printer('nobranch', fg='red') |
@@ -246,7 +246,7 @@ class StatusColoring(Coloring): | |||
246 | class DiffColoring(Coloring): | 246 | class DiffColoring(Coloring): |
247 | 247 | ||
248 | def __init__(self, config): | 248 | def __init__(self, config): |
249 | Coloring.__init__(self, config, 'diff') | 249 | super().__init__(config, 'diff') |
250 | self.project = self.printer('header', attr='bold') | 250 | self.project = self.printer('header', attr='bold') |
251 | self.fail = self.printer('fail', fg='red') | 251 | self.fail = self.printer('fail', fg='red') |
252 | 252 | ||
@@ -3091,7 +3091,7 @@ class _Later(object): | |||
3091 | class _SyncColoring(Coloring): | 3091 | class _SyncColoring(Coloring): |
3092 | 3092 | ||
3093 | def __init__(self, config): | 3093 | def __init__(self, config): |
3094 | Coloring.__init__(self, config, 'reposync') | 3094 | super().__init__(config, 'reposync') |
3095 | self.project = self.printer('header', attr='bold') | 3095 | self.project = self.printer('header', attr='bold') |
3096 | self.info = self.printer('info') | 3096 | self.info = self.printer('info') |
3097 | self.fail = self.printer('fail', fg='red') | 3097 | self.fail = self.printer('fail', fg='red') |