Skip to content

Commit

Permalink
01.26.84
Browse files Browse the repository at this point in the history
  • Loading branch information
ToninoTarsi committed Sep 3, 2018
1 parent b5a06d1 commit cd71526
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TTLib.py
Expand Up @@ -693,13 +693,13 @@ def CreateMeteoJson(cfg):
try:
globalvars.meteo_data.battery
mydata['battery'] = None if (globalvars.meteo_data.battery == None) else float( "%.1f" % (globalvars.meteo_data.battery) )
except NameError:
except :
pass

try:
globalvars.meteo_data.rssi
mydata['rssi'] = None if (globalvars.meteo_data.rssi == None) else int(globalvars.meteo_data.rssi)
except NameError:
except :
pass

if ( globalvars.meteo_data.wind_trend != None):
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
01.26.83
01.26.84

0 comments on commit cd71526

Please sign in to comment.