mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
add dnspython
This commit is contained in:
parent
6582067f66
commit
387769edff
@ -1,7 +1,6 @@
|
|||||||
"""
|
"""
|
||||||
homeassistant.components.notify.xmpp
|
homeassistant.components.notify.xmpp
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Jabber (XMPP) notification service.
|
Jabber (XMPP) notification service.
|
||||||
|
|
||||||
Configuration:
|
Configuration:
|
||||||
@ -29,7 +28,6 @@ The password for your given Jabber account.
|
|||||||
recipient
|
recipient
|
||||||
*Required
|
*Required
|
||||||
The Jabber ID (JID) that will receive the messages.
|
The Jabber ID (JID) that will receive the messages.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
@ -47,7 +45,7 @@ from homeassistant.helpers import validate_config
|
|||||||
from homeassistant.components.notify import (
|
from homeassistant.components.notify import (
|
||||||
DOMAIN, ATTR_TITLE, BaseNotificationService)
|
DOMAIN, ATTR_TITLE, BaseNotificationService)
|
||||||
|
|
||||||
REQUIREMENTS = ['sleekxmpp>=1.3.1']
|
REQUIREMENTS = ['sleekxmpp>=1.3.1', 'dnspython>=1.11.1']
|
||||||
|
|
||||||
|
|
||||||
def get_service(hass, config):
|
def get_service(hass, config):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user