mirror of https://gitlab.com/ita1024/waf.git
Forgot to change always/never by yes/no in Options.py
This commit is contained in:
parent
85bfd3eded
commit
f8b24e70a9
|
@ -243,7 +243,7 @@ class OptionsContext(Context.Context):
|
|||
if options.verbose >= 1:
|
||||
self.load('errcheck')
|
||||
|
||||
colors = {'always' : 2, 'auto' : 1, 'never' : 0}[options.colors]
|
||||
colors = {'yes' : 2, 'auto' : 1, 'no' : 0}[options.colors]
|
||||
Logs.enable_colors(colors)
|
||||
|
||||
def execute(self):
|
||||
|
|
Loading…
Reference in New Issue