From d570d38d5c81df2d334c97aa513e35ba8b599cc1 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Wed, 20 Jul 2016 14:46:16 -0700 Subject: [PATCH] Change path to favicon in GNTP This broke when #2537 was merged. --- homeassistant/components/notify/gntp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/gntp.py b/homeassistant/components/notify/gntp.py index ed192256cfc..5b5d377e1ea 100644 --- a/homeassistant/components/notify/gntp.py +++ b/homeassistant/components/notify/gntp.py @@ -22,7 +22,7 @@ def get_service(hass, config): """Get the GNTP notification service.""" if config.get('app_icon') is None: icon_file = os.path.join(os.path.dirname(__file__), "..", "frontend", - "www_static", "favicon-192x192.png") + "www_static", "icons", "favicon-192x192.png") app_icon = open(icon_file, 'rb').read() else: app_icon = config.get('app_icon')