Fix copy/paste logic error

This commit is contained in:
Josh Wright 2016-04-12 18:45:57 -04:00
parent 942d722dcf
commit 1685bbe1f7

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: