From e98b3a240bf54a15ea5d47b174b6849e0e0a2bf6 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 8 Oct 2018 19:07:50 -0400 Subject: [PATCH] remove print --- aioupnp/protocols/ssdp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aioupnp/protocols/ssdp.py b/aioupnp/protocols/ssdp.py index 1892511..f1aba09 100644 --- a/aioupnp/protocols/ssdp.py +++ b/aioupnp/protocols/ssdp.py @@ -30,7 +30,6 @@ class SSDPProtocol(MulticastProtocol): man=man, mx=1 ) log.debug("sending packet to %s:%i: %s", address, SSDP_PORT, packet) - print(packet.encode()) self.transport.sendto(packet.encode().encode(), (address, SSDP_PORT)) async def m_search(self, address, timeout: int = 1, service=UPNP_ORG_IGD) -> SSDPDatagram: