Fix pushover's ATTR_RETRY env variable typo (#32440)

This commit is contained in:
Achilleas Pipinellis
2020-03-03 17:36:28 -08:00
committed by GitHub
parent 02c8cd07f3
commit 7e3e4c1668
+1 -1
View File
@@ -61,7 +61,7 @@ class PushoverNotificationService(BaseNotificationService):
url = data.get(ATTR_URL, None)
url_title = data.get(ATTR_URL_TITLE, None)
priority = data.get(ATTR_PRIORITY, None)
retry = data.get(ATTR_PRIORITY, None)
retry = data.get(ATTR_RETRY, None)
expire = data.get(ATTR_EXPIRE, None)
callback_url = data.get(ATTR_CALLBACK_URL, None)
timestamp = data.get(ATTR_TIMESTAMP, None)