From 7cccf66cd413c41e0425233c4b5d9569ad8defa4 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Sun, 5 Apr 2015 19:20:42 +0200 Subject: [PATCH] quiet mode bug dont show BOSWatch Header text in quiet mode --- boswatch.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/boswatch.py b/boswatch.py index b33736d..d16b3a8 100644 --- a/boswatch.py +++ b/boswatch.py @@ -71,16 +71,7 @@ try: except: log("cannot parse Args","error") - #Read Data from Args, Put it into working Variables and Display them - print " ____ ____ ______ __ __ __ " - print " / __ )/ __ \/ ___/ | / /___ _/ /______/ /_ b" - print " / __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ e" - print " / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / t" - print " /_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ a" - print " German BOS Information Script " - print " by Bastian Schroll " - print "" - + #Read Data from Args, Put it into working Variables freq = args.freq device = args.device error = args.error @@ -100,6 +91,15 @@ try: squelch = args.squelch if not args.quiet: #only if not quiet mode + print " ____ ____ ______ __ __ __ " + print " / __ )/ __ \/ ___/ | / /___ _/ /______/ /_ b" + print " / __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ e" + print " / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / t" + print " /_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ a" + print " German BOS Information Script " + print " by Bastian Schroll " + print "" + print "Frequency: "+freq print "Device-ID: "+str(device) print "Error in PPM: "+str(error)