diff --git a/homeassistant/components/notify/__init__.py b/homeassistant/components/notify/__init__.py index 8e1d20e1376..44a0639c001 100644 --- a/homeassistant/components/notify/__init__.py +++ b/homeassistant/components/notify/__init__.py @@ -1,8 +1,10 @@ """ homeassistant.components.notify ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Provides functionality to notify people. + +For more details about this component, please refer to the documentation at +https://home-assistant.io/components/notify/ """ from functools import partial import logging diff --git a/homeassistant/components/notify/file.py b/homeassistant/components/notify/file.py index 41e5fd90667..1469ac4558f 100644 --- a/homeassistant/components/notify/file.py +++ b/homeassistant/components/notify/file.py @@ -4,7 +4,7 @@ homeassistant.components.notify.file File notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.file.html +https://home-assistant.io/components/notify.file/ """ import logging import os diff --git a/homeassistant/components/notify/instapush.py b/homeassistant/components/notify/instapush.py index 82a48e3ddeb..fbc9e3cbbbd 100644 --- a/homeassistant/components/notify/instapush.py +++ b/homeassistant/components/notify/instapush.py @@ -4,7 +4,7 @@ homeassistant.components.notify.instapush Instapush notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.instapush.html +https://home-assistant.io/components/notify.instapush/ """ import logging import json diff --git a/homeassistant/components/notify/nma.py b/homeassistant/components/notify/nma.py index 4c3920d5b79..74ed796804c 100644 --- a/homeassistant/components/notify/nma.py +++ b/homeassistant/components/notify/nma.py @@ -4,7 +4,7 @@ homeassistant.components.notify.nma NMA (Notify My Android) notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.nma.html +https://home-assistant.io/components/notify.nma/ """ import logging import xml.etree.ElementTree as ET diff --git a/homeassistant/components/notify/pushbullet.py b/homeassistant/components/notify/pushbullet.py index 50b25410b27..916e2a34003 100644 --- a/homeassistant/components/notify/pushbullet.py +++ b/homeassistant/components/notify/pushbullet.py @@ -4,7 +4,7 @@ homeassistant.components.notify.pushbullet PushBullet platform for notify component. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.pushbullet.html +https://home-assistant.io/components/notify.pushbullet/ """ import logging diff --git a/homeassistant/components/notify/pushover.py b/homeassistant/components/notify/pushover.py index 80c9bad1509..7c776300cdb 100644 --- a/homeassistant/components/notify/pushover.py +++ b/homeassistant/components/notify/pushover.py @@ -4,7 +4,7 @@ homeassistant.components.notify.pushover Pushover platform for notify component. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.pushover.html +https://home-assistant.io/components/notify.pushover/ """ import logging diff --git a/homeassistant/components/notify/slack.py b/homeassistant/components/notify/slack.py index 3542b060c34..7a386d8864f 100644 --- a/homeassistant/components/notify/slack.py +++ b/homeassistant/components/notify/slack.py @@ -4,7 +4,7 @@ homeassistant.components.notify.slack Slack platform for notify component. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.slack.html +https://home-assistant.io/components/notify.slack/ """ import logging diff --git a/homeassistant/components/notify/smtp.py b/homeassistant/components/notify/smtp.py index aa994089213..5e848634bb9 100644 --- a/homeassistant/components/notify/smtp.py +++ b/homeassistant/components/notify/smtp.py @@ -4,7 +4,7 @@ homeassistant.components.notify.smtp Mail (SMTP) notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.smtp.html +https://home-assistant.io/components/notify.smtp/ """ import logging import smtplib diff --git a/homeassistant/components/notify/syslog.py b/homeassistant/components/notify/syslog.py index 2c000ed037e..4ee9ead9152 100644 --- a/homeassistant/components/notify/syslog.py +++ b/homeassistant/components/notify/syslog.py @@ -4,7 +4,7 @@ homeassistant.components.notify.syslog Syslog notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.syslog.html +https://home-assistant.io/components/notify.syslog/ """ import logging import syslog diff --git a/homeassistant/components/notify/telegram.py b/homeassistant/components/notify/telegram.py index 690f964bad8..1d78c38f3c6 100644 --- a/homeassistant/components/notify/telegram.py +++ b/homeassistant/components/notify/telegram.py @@ -4,7 +4,7 @@ homeassistant.components.notify.telegram Telegram platform for notify component. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.telegram.html +https://home-assistant.io/components/notify.telegram/ """ import logging import urllib diff --git a/homeassistant/components/notify/xmpp.py b/homeassistant/components/notify/xmpp.py index 6f026e63d5d..016e0a949fd 100644 --- a/homeassistant/components/notify/xmpp.py +++ b/homeassistant/components/notify/xmpp.py @@ -4,7 +4,7 @@ homeassistant.components.notify.xmpp Jabber (XMPP) notification service. For more details about this platform, please refer to the documentation at -https://home-assistant.io/components/notify.xmpp.html +https://home-assistant.io/components/notify.xmpp/ """ import logging