fix exception caused by typo

added paren to end of "someoneIsHome" check on accident.
This commit is contained in:
tslagle13
2016-05-11 12:07:03 -07:00
parent 2bd18859b9
commit a4a48fddd2

View File

@@ -273,7 +273,7 @@ def scheduleCheck(evt) {
else {
if(people){
//don't turn off lights if anyone is home
if(someoneIsHome()){
if(someoneIsHome){
log.debug("Stopping Check for Light")
unschedule()
}