From 0afbfe997db3ab54416ec285bb25e1a94a52c1e0 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Tue, 9 May 2023 12:41:41 +0200 Subject: [PATCH] Fix log device info #40 --- custom_components/hon/button.py | 2 +- custom_components/hon/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/hon/button.py b/custom_components/hon/button.py index 5882b95..8f01f15 100644 --- a/custom_components/hon/button.py +++ b/custom_components/hon/button.py @@ -83,5 +83,5 @@ class HonFeatureRequestButton(HonEntity, ButtonEntity): async def async_press(self) -> None: pyhon_version = pkg_resources.get_distribution("pyhon").version - info = f"Device Info:\n{self._device.diagnose}pyhOnVersion: {pyhon_version}" + info = f"Device Info:\n{self._device.diagnose()}pyhOnVersion: {pyhon_version}" _LOGGER.error(info) diff --git a/custom_components/hon/manifest.json b/custom_components/hon/manifest.json index 85cbf29..ab9352c 100644 --- a/custom_components/hon/manifest.json +++ b/custom_components/hon/manifest.json @@ -7,5 +7,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/Andre0512/hon/issues", "requirements": ["pyhOn==0.10.6"], - "version": "0.7.3-beta.2" + "version": "0.7.3" }