mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 12:47:08 +00:00
Fix nest climate set temperature error message string (#86852)
This commit is contained in:
parent
af5fd74d6f
commit
733798f483
@ -313,7 +313,7 @@ class ThermostatEntity(ClimateEntity):
|
||||
elif hvac_mode == HVACMode.HEAT and temp:
|
||||
await trait.set_heat(temp)
|
||||
except ApiException as err:
|
||||
raise HomeAssistantError(f"Error setting HVAC mode: {err}") from err
|
||||
raise HomeAssistantError(f"Error setting temperature: {err}") from err
|
||||
|
||||
async def async_set_preset_mode(self, preset_mode: str) -> None:
|
||||
"""Set new target preset mode."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user