From 6cc745f789477ba4793927ae0e0d51f4c0611980 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 11 Mar 2011 20:04:15 +0000 Subject: [PATCH] removal of deprecated piece of code (replaced later with that getCurrentThreadData().disableStdOut) --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index 89302340a..67e0803eb 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -598,7 +598,7 @@ def filePathToString(filePath): def dataToStdout(data, forceOutput=False): if not ('threadException' in kb and kb.threadException): - if forceOutput or (conf.verbose > 0) and not getCurrentThreadData().disableStdOut: + if forceOutput or not getCurrentThreadData().disableStdOut: try: sys.stdout.write(data.encode(sys.stdout.encoding)) except: