From 748a1105aa521ec264af9769d46904c63e28f215 Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Wed, 5 Mar 2008 15:55:52 +0100 Subject: Fix wrong verbose condition --- firstaidkit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firstaidkit b/firstaidkit index 2c23c51..95ed86e 100755 --- a/firstaidkit +++ b/firstaidkit @@ -183,7 +183,7 @@ if __name__=="__main__": singlerun = Tasker(Config) - if not Config.operation.verbose: + if Config.operation.verbose=="False": outputThread = Output(singlerun.reporting()) else: outputThread = Output(singlerun.reporting(), importance = 0) -- cgit