summaryrefslogtreecommitdiffstats
path: root/Demo/sockets/unixclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/sockets/unixclient.py')
-rw-r--r--Demo/sockets/unixclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sockets/unixclient.py b/Demo/sockets/unixclient.py
index a0d80f6..cccd617 100644
--- a/Demo/sockets/unixclient.py
+++ b/Demo/sockets/unixclient.py
@@ -7,4 +7,4 @@ s.connect(FILE)
s.send('Hello, world')
data = s.recv(1024)
s.close()
-print 'Received', `data`
+print 'Received', repr(data)