From d796625098f1e68c6361d4f1cc05efef2ae0a975 Mon Sep 17 00:00:00 2001 From: Theb-1 Date: Tue, 9 Feb 2016 22:51:44 -0800 Subject: [PATCH] flake8 fix --- homeassistant/components/notify/rest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/notify/rest.py b/homeassistant/components/notify/rest.py index e78b0740482..e0bb50216bd 100644 --- a/homeassistant/components/notify/rest.py +++ b/homeassistant/components/notify/rest.py @@ -76,4 +76,5 @@ class RestNotificationService(BaseNotificationService): if response.status_code not in (200, 201): _LOGGER.exception( - "Error sending message. Response %d: %s:", response.status_code, response.reason) + "Error sending message. Response %d: %s:", + response.status_code, response.reason)