We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfcadef commit 14bd2d8Copy full SHA for 14bd2d8
pyemoncms/emoncms_client.py
@@ -92,7 +92,7 @@ async def async_list_feeds(self) -> list[dict[str, Any]] | None:
92
uuid_data = await self.async_request("/user/getuuid.json")
93
feed_data = await self.async_request("/feed/list.json")
94
if not uuid_data[SUCCESS_KEY]:
95
- message = "no uuid available"
+ message = "no uuid available"
96
message = f"{message} - migrate your emoncms sensor to a newer version"
97
self.logger.warning(message)
98
if feed_data[SUCCESS_KEY] and uuid_data[SUCCESS_KEY]:
0 commit comments