Skip to content

Commit

Permalink
Fix llamalab_automate notify priority (home-assistant#36845)
Browse files Browse the repository at this point in the history
  • Loading branch information
fb22 authored Jun 16, 2020
1 parent a68af0a commit 6273ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/llamalab_automate/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def send_message(self, message="", **kwargs):

# Extract params from data dict
data = dict(kwargs.get(ATTR_DATA) or {})
priority = data.get(ATTR_PRIORITY, "Normal")
priority = data.get(ATTR_PRIORITY, "normal").lower()

_LOGGER.debug(
"Sending to: %s, %s, prio: %s", self._recipient, str(self._device), priority
Expand Down

0 comments on commit 6273ad8

Please sign in to comment.