Skip to content

Commit

Permalink
#51
Browse files Browse the repository at this point in the history
  • Loading branch information
jimboca committed Feb 6, 2020
1 parent a205b50 commit 604c7e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ def update(self, weather):
try:
currentWeather = weather['forecasts'][self.forecastNum]
except IndexError:
LOGGER.error("forcast {} not in weather['forcasts']={}".format(self.forcastNum,weather['forcasts']))
LOGGER.error("Can not update forcast {} not in weather['forcasts']={}".format(self.forcastNum,weather['forcasts']))
return
windSpeed = 0
if self.type == 'weather' and currentWeather['windSpeed'] == 0 and weather['forecasts'][5]['windSpeed'] > 0:
Expand Down
2 changes: 1 addition & 1 deletion server.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"shortPoll": "60",
"longPoll": "180",
"api_key": "19j5o2QheoDIYeuwPGOCWV80hI07lbDC",
"testMode": true,
"testMode": false,
"credits": [
{
"title": "ecobee: Polyglot NodeServer for Ecobee",
Expand Down

0 comments on commit 604c7e4

Please sign in to comment.