From 0285351230e4c0c98e15fb0b4226c00ae53898a9 Mon Sep 17 00:00:00 2001 From: Viktor Stanchev Date: Sun, 20 Sep 2015 14:44:52 -0700 Subject: [PATCH] make color disabling work --- pirate/print.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pirate/print.py b/pirate/print.py index 60d4791..6c11f0e 100644 --- a/pirate/print.py +++ b/pirate/print.py @@ -85,7 +85,7 @@ class Printer: content = [n, no_seeders, no_leechers, '{:.1f}'.format(ratio), '{:.1f}'.format(size), unit, date, torrent_name[:columns - 53]] - if even: + if even or not self.enable_color: table.add_row(content) else: table.add_row(content, fore_color='blue')