From acb6b7c68dfbc8599ce17d3dfcd483ef33481284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8yer=20Iversen?= Date: Thu, 31 Aug 2017 20:41:22 +0200 Subject: [PATCH] title and message was swapped in pushbullet (#9241) --- homeassistant/components/notify/pushbullet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/pushbullet.py b/homeassistant/components/notify/pushbullet.py index 9b83184047f..d8b67413528 100644 --- a/homeassistant/components/notify/pushbullet.py +++ b/homeassistant/components/notify/pushbullet.py @@ -127,7 +127,7 @@ class PushBulletNotificationService(BaseNotificationService): _LOGGER.error("No such target: %s/%s", ttype, tname) continue - def _push_data(self, title, message, data, pusher, tname=None): + def _push_data(self, message, title, data, pusher, tname=None): from pushbullet import PushError if data is None: data = {}