From 584bb0ed36e6fcd5f2fc351e577a490cc59b98e2 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Mon, 21 Apr 2014 01:09:00 +0200 Subject: [PATCH] fixes windows color --- buildozer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildozer/__init__.py b/buildozer/__init__.py index f83d317..174074c 100644 --- a/buildozer/__init__.py +++ b/buildozer/__init__.py @@ -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