From 97468073bc1c2d041b624d1a6494113902a3cec1 Mon Sep 17 00:00:00 2001 From: Maksym Sobolyev Date: Thu, 5 Oct 2023 01:10:37 +0000 Subject: [PATCH] print x -> print(x). --- scripts/rtpproxy_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rtpproxy_client.py b/scripts/rtpproxy_client.py index 444fc7a..fd3c38c 100755 --- a/scripts/rtpproxy_client.py +++ b/scripts/rtpproxy_client.py @@ -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')