Skip to content

Commit

Permalink
[FIX] Fixed SyntaxError
Browse files Browse the repository at this point in the history
  • Loading branch information
tayler6000 committed Apr 16, 2022
1 parent 2c2059f commit 9fd71a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyVoIP/VoIP.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def callback(self, request):
sess_id = proposed
message = self.sip.genRinging(request)
self.sip.out.sendto(message.encode('utf8'), (self.server, self.port))
self.calls[call_id] = VoIPCall(self, CallState.RINGING, request, sess_id, self.myIP))
self.calls[call_id] = VoIPCall(self, CallState.RINGING, request, sess_id, self.myIP)
try:
t = Timer(1, self.callCallback, [self.calls[call_id]])
t.name = "Phone Call: "+call_id
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='pyVoIP',
version='1.5.5',
version='1.5.5.post1',
description='PyVoIP is a pure python VoIP/SIP/RTP library.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 9fd71a7

Please sign in to comment.