From 0015d3b2c9363ee60c493bdcfc94d169a80468c7 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 14 Aug 2020 12:18:32 +0900 Subject: [PATCH] Deleted debug line --- pyVoIP/SIP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyVoIP/SIP.py b/pyVoIP/SIP.py index ff02348..5090bb2 100644 --- a/pyVoIP/SIP.py +++ b/pyVoIP/SIP.py @@ -712,7 +712,7 @@ def register(self): self.out.sendto(regRequest.encode('utf8'), (self.server, self.port)) response = SIPMessage(self.s.recv(8192)) - print(response.summary()) + if response.status != SIPStatus(401): if response.status == SIPStatus(500): self.recvLock.release()