From 124313db45a3d4778bfdb51daf139c0eb47d26dd Mon Sep 17 00:00:00 2001 From: Yves Racine Date: Thu, 22 Oct 2015 19:46:33 -0400 Subject: [PATCH] Minor code formatting --- smartapps/ecobeeSetZoneWithSchedule.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartapps/ecobeeSetZoneWithSchedule.groovy b/smartapps/ecobeeSetZoneWithSchedule.groovy index c5f35829..651c707e 100644 --- a/smartapps/ecobeeSetZoneWithSchedule.groovy +++ b/smartapps/ecobeeSetZoneWithSchedule.groovy @@ -1608,7 +1608,7 @@ private boolean is_temperature_too_hot_or_too_cold(ventSwitch) { log.debug("is_temperature_in_vent_too_hot>checking current Temperature of ${ventSwitch}= ${tempSwitch}° vs. HVAC Max Temp of ${MAX_TEMP_VENT_SWITCH}°") log.debug("is_temperature_in_vent_too_hot>checking current Temperature of ${ventSwitch}= ${tempSwitch}° vs. HVAC Min Temp of ${MIN_TEMP_VENT_SWITCH}°") if (tempSwitch) { - if (((currentHVACMode=='heat') || (currentHVACMode == 'auto')) && (tempSwitch >= MAX_TEMP_VENT_SWITCH)) { + if (((currentHVACMode=='heat') || (currentHVACMode == 'auto')) && (tempSwitch >= MAX_TEMP_VENT_SWITCH)) { // Turn the HVAC off, open all vents, and deactivate any further smartapp processing thermostat.off() open_all_vents()