From 3894dec274bbd19621f951f81a718b492286103a Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 4 Jan 2015 14:20:16 -0800 Subject: [PATCH] Default notify message title is now Home Assistant --- homeassistant/components/notify/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/__init__.py b/homeassistant/components/notify/__init__.py index a1f5dc27fdb..d0c73045f63 100644 --- a/homeassistant/components/notify/__init__.py +++ b/homeassistant/components/notify/__init__.py @@ -16,7 +16,7 @@ DEPENDENCIES = [] # Title of notification ATTR_TITLE = "title" -ATTR_TITLE_DEFAULT = "Message from Home Assistant" +ATTR_TITLE_DEFAULT = "Home Assistant" # Text to notify user of ATTR_MESSAGE = "message"