From: Ralf Jung Date: Thu, 10 Oct 2013 16:24:51 +0000 (+0200) Subject: Merge branch 'master' of ralfj.de:saartuer X-Git-Url: https://git.ralfj.de/saartuer.git/commitdiff_plain/ae16fc79ab4455d5dd0bc79c73066ce61157362a?hp=8feb684cae58c5a570edefc163001beeb54029df Merge branch 'master' of ralfj.de:saartuer --- diff --git a/statemachine.odg b/statemachine.odg index a26f172..3201b42 100644 Binary files a/statemachine.odg and b/statemachine.odg differ diff --git a/statemachine.py b/statemachine.py index 5583cc6..70f9fe3 100644 --- a/statemachine.py +++ b/statemachine.py @@ -136,7 +136,6 @@ class StateMachine(): class AbstractStateWhereOpeningIsRedundant(State): def handle_open_event(self, callback): # intentionally not calling super() implementation - # FIXME contradicting original plan where open would be ignored in StateAboutToOpen? callback("299 redundant: Space seems to be already open. Still processing your request tough.") logger.warning("Received OPEN command in StateAboutToOpen. This should not be necessary.") self.actor().act(Actor.CMD_OPEN)