mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-01-23 00:30:14 +01:00
quiet mode bug
dont show BOSWatch Header text in quiet mode
This commit is contained in:
parent
655c1ee99d
commit
7cccf66cd4
20
boswatch.py
20
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue