From 9230482870b134e612beb58df4a068854f3f7234 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 16 Mar 2014 12:13:52 +0100 Subject: [PATCH] set default verbosity to false, because of daemon --- lib/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.py b/lib/util.py index 4363157cb..810858022 100644 --- a/lib/util.py +++ b/lib/util.py @@ -2,7 +2,7 @@ import os, sys, re, json import platform import shutil from datetime import datetime -is_verbose = True +is_verbose = False class MyEncoder(json.JSONEncoder):