From 6f2df4d5e193d54244b0c2de91ef0ab1604b9243 Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Tue, 17 Jul 2007 20:59:35 +0000 Subject: Run 2to3 over the Demo/ directory to shut up parse errors from 2to3 about lingering print statements. --- Demo/sockets/unixclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Demo/sockets/unixclient.py') diff --git a/Demo/sockets/unixclient.py b/Demo/sockets/unixclient.py index fdbcc7aec1..cdccb84586 100644 --- a/Demo/sockets/unixclient.py +++ b/Demo/sockets/unixclient.py @@ -9,4 +9,4 @@ s.connect(FILE) s.send('Hello, world') data = s.recv(1024) s.close() -print 'Received', repr(data) +print('Received', repr(data)) -- cgit v1.2.1