summaryrefslogtreecommitdiffstats
path: root/Demo/sockets/radio.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/sockets/radio.py')
-rwxr-xr-xDemo/sockets/radio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sockets/radio.py b/Demo/sockets/radio.py
index 6131d40..b68a4ec 100755
--- a/Demo/sockets/radio.py
+++ b/Demo/sockets/radio.py
@@ -10,5 +10,5 @@ s.bind(('', MYPORT))
while 1:
data, wherefrom = s.recvfrom(1500, 0)
- sys.stderr.write(`wherefrom` + '\n')
+ sys.stderr.write(repr(wherefrom) + '\n')
sys.stdout.write(data)