From b4f482375ad7f72a8d8eeb1055098b8d13614acf Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 14 Jan 2013 17:39:28 +0200 Subject: [PATCH] tools: Fix map-client to use new print syntax print now requires () on newer python: File "./map-client", line 101 print err ^ --- test/map-client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/map-client b/test/map-client index 9fb7a5e13..34897cdc8 100755 --- a/test/map-client +++ b/test/map-client @@ -98,7 +98,7 @@ class MapClient: print("Operation succeeded") def error(self, err): - print err + print(err) mainloop.quit() def transfer_complete(self, path): -- 2.47.3