From c19120e0123b76236d11f3523e2ebd64c00b9feb Mon Sep 17 00:00:00 2001
From: Fabian Affolter <fabian@affolter-engineering.ch>
Date: Sat, 24 Oct 2015 00:34:49 +0200
Subject: [PATCH] Check import

---
 homeassistant/components/thermostat/radiotherm.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/homeassistant/components/thermostat/radiotherm.py b/homeassistant/components/thermostat/radiotherm.py
index 22dce97ad22..3806b24533c 100644
--- a/homeassistant/components/thermostat/radiotherm.py
+++ b/homeassistant/components/thermostat/radiotherm.py
@@ -21,7 +21,13 @@ _LOGGER = logging.getLogger(__name__)
 
 def setup_platform(hass, config, add_devices, discovery_info=None):
     """ Sets up the Radio Thermostat. """
-    import radiotherm
+    try:
+        import radiotherm
+    except ImportError:
+        _LOGGER.exception(
+            "Unable to import radiotherm. "
+            "Did you maybe not install the 'radiotherm' package?")
+        return False
 
     hosts = []
     if CONF_HOST in config:
-- 
GitLab