Fix copy/paste logic error

pull/1816/head
Josh Wright 2016-04-12 18:45:57 -04:00
parent 942d722dcf
commit 1685bbe1f7
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class NestThermostat(ThermostatDevice):
if (self.device.structure.weather.current.temperature <
self.current_temperature):
temp = low
elif self.current_temperature >= range_average:
else:
temp = high
else:
if self.is_away_mode_on: