Skip to content

Commit

Permalink
print x -> print(x).
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Oct 5, 2023
1 parent 1518efb commit 9746807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rtpproxy_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def process_udp(addr):
t += 1
s.sendto(cookie + " " + l, dst)
res = s.recv(256)
print res.split(None, 1)[1].rstrip()
print(res.split(None, 1)[1].rstrip())

def usage():
print('usage: rtp_proxy_client.py DESTINATION')
Expand Down

0 comments on commit 9746807

Please sign in to comment.