From 8195da2d0e11cb947e2e2ea633c9b3529b45a1a7 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 14 May 2015 11:43:57 +0200 Subject: [PATCH] support/css.py: little fix (V) --- support/css.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/css.py b/support/css.py index b97cc56b4..8bbf00d75 100755 --- a/support/css.py +++ b/support/css.py @@ -5,7 +5,7 @@ import sys, os -VERBOSE = len(os.environ['V'] or '') > 0 +VERBOSE = 'V' in os.environ and len(os.environ['V']) > 0 TVHDIR = os.path.realpath('.') def info(fmt, *msg): -- 2.47.2