diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/siggen.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index c619b596d8..fdbb2a3998 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -342,10 +342,10 @@ def dump_this_task(outfile, d): | |||
342 | def init_colors(enable_color): | 342 | def init_colors(enable_color): |
343 | """Initialise colour dict for passing to compare_sigfiles()""" | 343 | """Initialise colour dict for passing to compare_sigfiles()""" |
344 | # First set up the colours | 344 | # First set up the colours |
345 | colors = {'color_title': '\033[1;37;40m', | 345 | colors = {'color_title': '\033[1m', |
346 | 'color_default': '\033[0;37;40m', | 346 | 'color_default': '\033[0m', |
347 | 'color_add': '\033[1;32;40m', | 347 | 'color_add': '\033[0;32m', |
348 | 'color_remove': '\033[1;31;40m', | 348 | 'color_remove': '\033[0;31m', |
349 | } | 349 | } |
350 | # Leave all keys present but clear the values | 350 | # Leave all keys present but clear the values |
351 | if not enable_color: | 351 | if not enable_color: |