fixes windows color

This commit is contained in:
Mathieu Virbel 2014-04-21 01:09:00 +02:00
parent e8483f8c46
commit 584bb0ed36

View file

@ -38,10 +38,10 @@ try:
import colorama
colorama.init()
RESET_SEQ = colorama.Fore.RESET
RESET_SEQ = colorama.Fore.RESET + colorama.Style.RESET_ALL
COLOR_SEQ = lambda x: x
BOLD_SEQ = ''
BLACK = colorama.Fore.BLACK
BLACK = colorama.Fore.BLACK + colorama.Style.DIM
RED = colorama.Fore.RED
BLUE = colorama.Fore.CYAN
USE_COLOR = 'NO_COLOR' not in environ