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: