Mercurial > templog
changeset 221:720809f6c968
Fridge.is_off() wasn't a method
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 19 Dec 2014 22:34:41 +0800 |
parents | 251524081924 |
children | fb742ee61342 |
files | py/fridge.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/py/fridge.py Fri Dec 19 22:32:59 2014 +0800 +++ b/py/fridge.py Fri Dec 19 22:34:41 2014 +0800 @@ -75,7 +75,7 @@ # Safety to avoid bad things happening to the fridge motor (?) # When it turns off don't start up again for at least FRIDGE_DELAY - if self.is_off() and off_time < config.FRIDGE_DELAY: + if not self.is_on() and off_time < config.FRIDGE_DELAY: L("fridge skipping, too early") return