mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Plugin weather_: fixes style issues
This commit is contained in:
parent
a4a9e755b5
commit
34840ad9db
@ -14,10 +14,10 @@ re_loc = re.compile('locName: "([\w ]+)"')
|
||||
# code = sys.argv[0][(sys.argv[0].rfind('_') + 1):]
|
||||
code = os.environ.get('code', sys.argv[0][(sys.argv[0].rfind('_') + 1):])
|
||||
|
||||
if code == None: sys.exit(1)
|
||||
|
||||
if len(sys.argv) == 2 and sys.argv[1] == "autoconf":
|
||||
print "yes"
|
||||
if not code:
|
||||
sys.exit(1)
|
||||
elif len(sys.argv) == 2 and sys.argv[1] == "autoconf":
|
||||
print("yes")
|
||||
elif len(sys.argv) == 2 and sys.argv[1] == "config":
|
||||
u = urllib.urlopen(url % code)
|
||||
txt = u.read()
|
||||
@ -30,14 +30,14 @@ elif len(sys.argv) == 2 and sys.argv[1] == "config":
|
||||
else:
|
||||
LOC = "Unknown"
|
||||
|
||||
print 'graph_title Weather in %s' % LOC
|
||||
print 'graph_vlabel Temperature and Humidity'
|
||||
print 'graph_category sensors'
|
||||
print('graph_title Weather in %s' % LOC)
|
||||
print('graph_vlabel Temperature and Humidity')
|
||||
print('graph_category sensors')
|
||||
|
||||
print 'temperature.label Temperature'
|
||||
print 'humidity.label Humidity'
|
||||
print('temperature.label Temperature')
|
||||
print('humidity.label Humidity')
|
||||
|
||||
print 'graph_args --base 1000 -l 0'
|
||||
print('graph_args --base 1000 -l 0')
|
||||
else:
|
||||
u = urllib.urlopen(url % code)
|
||||
txt = u.read()
|
||||
@ -57,5 +57,5 @@ else:
|
||||
else:
|
||||
sys.exit(1)
|
||||
|
||||
print 'temperature.value %s' % TMP_C
|
||||
print 'humidity.value %s' % HUM
|
||||
print('temperature.value %s' % TMP_C)
|
||||
print('humidity.value %s' % HUM)
|
||||
|
Loading…
Reference in New Issue
Block a user