From 14f1bd6dd402bb3378919faab073da1c343dc487 Mon Sep 17 00:00:00 2001 From: avollkopf <43980694+avollkopf@users.noreply.github.com> Date: Sat, 2 Apr 2022 16:20:48 +0200 Subject: [PATCH] fix typos in step controller --- cbpi/controller/step_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cbpi/controller/step_controller.py b/cbpi/controller/step_controller.py index 892f46b..92c3b1e 100644 --- a/cbpi/controller/step_controller.py +++ b/cbpi/controller/step_controller.py @@ -230,7 +230,7 @@ class StepController: await self.save() async def shutdown(self, app=None): - logging.info("Mash Profile Shutdonw") + logging.info("Mash Profile Shutdown") for p in self.profile: instance = p.instance # Stopping all running task @@ -293,7 +293,7 @@ class StepController: item = self.find_by_id(id) await item.instance.__getattribute__(action)(**parameter) except Exception as e: - logging.error("Step Controller -Faild to call action on {} {} {}".format(id, action, e)) + logging.error("Step Controller -Failed to call action on {} {} {}".format(id, action, e)) async def load_recipe(self, data): try: