From 76fd70657ad1523eb2ef2797765d37bb97d48c58 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 10 May 2015 23:22:06 +0200 Subject: [PATCH] remove deprecated parameter --- homeassistant/components/notify/xmpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/xmpp.py b/homeassistant/components/notify/xmpp.py index 769e9a89844..e6718bdfffe 100644 --- a/homeassistant/components/notify/xmpp.py +++ b/homeassistant/components/notify/xmpp.py @@ -113,7 +113,7 @@ class SendNotificationBot(sleekxmpp.ClientXMPP): self.add_event_handler("failed_auth", self.check_credentials) self.add_event_handler('session_start', self.start) self.connect() - self.process(threaded=False) + self.process(block=False) def start(self, event): """ Starts the communication and sends the message. """