Skip to content

Commit

Permalink
Deleted debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
tayler6000 committed Aug 14, 2020
1 parent b84c10f commit 0015d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyVoIP/SIP.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0015d3b

Please sign in to comment.