From 4f657e57d9a3b48b748c3e877435ab02daad28a4 Mon Sep 17 00:00:00 2001 From: Thomas Lauf Date: Sat, 28 Dec 2019 15:30:17 +0100 Subject: [PATCH] Switch to python 3 - #259 Signed-off-by: Thomas Lauf --- ext/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/debug.py b/ext/debug.py index ab64322c..0c76f910 100755 --- a/ext/debug.py +++ b/ext/debug.py @@ -3,4 +3,4 @@ import sys for line in sys.stdin: - print line.strip() + print(line.strip())