diff --git a/homeassistant/components/thermostat/radiotherm.py b/homeassistant/components/thermostat/radiotherm.py index 22dce97ad22d869945d42ee72c82238d5a54b405..3806b24533cf18e67728723e4f83d1ffaf8430ba 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: