Forgot to change always/never by yes/no in Options.py

This commit is contained in:
Thomas Nagy 2014-01-05 10:54:18 +01:00
parent 85bfd3eded
commit f8b24e70a9
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -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):