Skip to content

Commit

Permalink
Fix pushover's ATTR_RETRY env variable typo (home-assistant#32440)
Browse files Browse the repository at this point in the history
  • Loading branch information
axilleas authored Mar 4, 2020
1 parent 02c8cd0 commit 7e3e4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/pushover/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def send_message(self, message="", **kwargs):
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)
Expand Down

0 comments on commit 7e3e4c1

Please sign in to comment.