From: Benjamin Braatz Date: Sun, 25 May 2025 20:58:36 +0000 (+0200) Subject: Bugfix: Forgot one _messages. X-Git-Url: http://git.graph-it.com/?a=commitdiff_plain;h=4604114bd42102b5a94aaf2666a8f2cfdedaa4cc;p=graphit%2Fcontrolpi-graph.git Bugfix: Forgot one _messages. --- diff --git a/controlpi_plugins/graph.py b/controlpi_plugins/graph.py index 2c43c13..4d7b56c 100644 --- a/controlpi_plugins/graph.py +++ b/controlpi_plugins/graph.py @@ -59,7 +59,7 @@ class Graph(BasePlugin): try: await self.send(messages) except Exception as e: - self._messages.extend(messages) + self.messages.extend(messages) print(f"Graph connection '{self.name}'" f" to {self.conf['url']}:" f" Exception in 'sync()': {e}")