From 631ce467b8b513fcf7d33075cf96741398c20763 Mon Sep 17 00:00:00 2001 From: Morg42 <43153739+Morg42@users.noreply.github.com> Date: Tue, 2 Jul 2024 19:27:42 +0200 Subject: [PATCH] fix sample plugin --- dev/sample_plugin/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/sample_plugin/__init__.py b/dev/sample_plugin/__init__.py index 2e5abdf40..4f1cad81e 100644 --- a/dev/sample_plugin/__init__.py +++ b/dev/sample_plugin/__init__.py @@ -159,9 +159,9 @@ def parse_item(self, item): with the item, caller, source and dest as arguments and in case of the knx plugin the value can be sent to the knx with a knx write function within the knx plugin. """ - # check for alive item + # check for pause item if item.property.path == self._pause_item_path: - self.logger.debug(f'alive item {item.property.path} registered') + self.logger.debug(f'pause item {item.property.path} registered') self._pause_item = item self.add_item(item, updating=True) return self.update_item