From 16d52efa29149ea1a77a888065d2935036fb2712 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 13 May 2018 21:50:03 +0200 Subject: [PATCH] Fix calling python print --- candi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candi.sh b/candi.sh index b9b114f..697aa74 100755 --- a/candi.sh +++ b/candi.sh @@ -956,7 +956,7 @@ echo # If the platform doesn't override the system python by installing its # own, figure out the version of the existing python -default PYTHONVER=`python -c "import sys; print sys.version[:3]"` +default PYTHONVER=`python -c "import sys; print(sys.version[:3])"` # Create necessary directories and set appropriate variables mkdir -p ${DOWNLOAD_PATH} -- 2.39.5