From 910bb3485c507d1bd080442e89bc06680587380e Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 9 Oct 2018 11:06:23 -0400 Subject: [PATCH] fix timeout --- aioupnp/protocols/scpd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aioupnp/protocols/scpd.py b/aioupnp/protocols/scpd.py index dfcc51a..f3cad9a 100644 --- a/aioupnp/protocols/scpd.py +++ b/aioupnp/protocols/scpd.py @@ -50,6 +50,7 @@ class SCPDHTTPClientProtocol(Protocol): try: packet = deserialize_soap_post_response(self.response_buff, self.soap_method, self.soap_service_id) if not packet: + self.finished.set_result(packet) return except ElementTree.ParseError: pass