diff --git a/homeassistant/components/updater.py b/homeassistant/components/updater.py
index c8385c8aac0..59dc64696dd 100644
--- a/homeassistant/components/updater.py
+++ b/homeassistant/components/updater.py
@@ -22,7 +22,7 @@ from homeassistant.const import __version__ as CURRENT_VERSION
 from homeassistant.const import ATTR_FRIENDLY_NAME
 from homeassistant.helpers import event
 
-REQUIREMENTS = ['distro==1.0.2']
+REQUIREMENTS = ['distro==1.0.3']
 
 _LOGGER = logging.getLogger(__name__)
 
@@ -71,8 +71,7 @@ def setup(hass, config):
     """Set up the updater component."""
     if 'dev' in CURRENT_VERSION:
         # This component only makes sense in release versions
-        _LOGGER.warning("Updater component enabled in 'dev'. "
-                        "No notifications but analytics will be submitted")
+        _LOGGER.warning("Running on 'dev', only analytics will be submitted")
 
     config = config.get(DOMAIN, {})
     huuid = _load_uuid(hass) if config.get(CONF_REPORTING) else None
diff --git a/requirements_all.txt b/requirements_all.txt
index 5011527c836..078d9de756b 100755
--- a/requirements_all.txt
+++ b/requirements_all.txt
@@ -115,7 +115,7 @@ directpy==0.1
 discord.py==0.16.0
 
 # homeassistant.components.updater
-distro==1.0.2
+distro==1.0.3
 
 # homeassistant.components.switch.digitalloggers
 dlipower==0.7.165