From 0eb5fd8a150c95e984321a30e7f7748c78416acd Mon Sep 17 00:00:00 2001 From: spagoc Date: Thu, 28 Sep 2017 08:42:35 +0200 Subject: [PATCH] More readable statistics on Ubuntu workstation standard terminal statistics are hard to read on the Ubuntu standard terminal issue #165 --- bonobo/ext/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonobo/ext/console.py b/bonobo/ext/console.py index 6679092..4d8cb6f 100644 --- a/bonobo/ext/console.py +++ b/bonobo/ext/console.py @@ -81,7 +81,7 @@ class ConsoleOutputPlugin(Plugin): print(line + CLEAR_EOL, file=sys.stderr) alive_color = Style.BRIGHT - dead_color = (Style.BRIGHT + Fore.BLACK) if self.iswindows else Fore.BLACK + dead_color = Style.BRIGHT + Fore.BLACK for i in context.graph.topologically_sorted_indexes: node = context[i]