From f131959f4bf16dd59a0d980b4412c0a10f4c8741 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 22 Jun 2020 14:46:31 +0200 Subject: [PATCH] Correct inst method names in system info and issue templates (#36998) --- .github/ISSUE_TEMPLATE.md | 2 +- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 2 +- homeassistant/helpers/system_info.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 713c7dc2872..f873f250da8 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -21,7 +21,7 @@ - Home Assistant Core release with the issue: - Last working Home Assistant Core release (if known): -- Operating environment (Home Assistant/Supervised/Docker/venv): +- Operating environment (OS/Container/Supervised/Core): - Integration causing this issue: - Link to integration documentation on our website: diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 9bfecda724f..e60aa00a448 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -25,7 +25,7 @@ about: Report an issue with Home Assistant Core - Home Assistant Core release with the issue: - Last working Home Assistant Core release (if known): -- Operating environment (Home Assistant/Supervised/Docker/venv): +- Operating environment (OS/Container/Supervised/Core): - Integration causing this issue: - Link to integration documentation on our website: diff --git a/homeassistant/helpers/system_info.py b/homeassistant/helpers/system_info.py index a857858de1b..855b6153ba0 100644 --- a/homeassistant/helpers/system_info.py +++ b/homeassistant/helpers/system_info.py @@ -51,7 +51,7 @@ async def async_get_system_info(hass: HomeAssistantType) -> Dict: info_object["docker_version"] = info.get("docker") if info.get("hassos") is not None: - info_object["installation_type"] = "Home Assistant" + info_object["installation_type"] = "Home Assistant OS" else: info_object["installation_type"] = "Home Assistant Supervised"