From 7a9f6cf195206c8d0cf00f30640ca3d969a14f41 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Sep 2019 13:43:26 +0530 Subject: [PATCH] ... --- setup/unix-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/unix-ci.py b/setup/unix-ci.py index d569306371..36a49636fc 100644 --- a/setup/unix-ci.py +++ b/setup/unix-ci.py @@ -78,7 +78,7 @@ def download_and_decompress(url, dest, compression=None): def run_python(*args): python = os.path.expandvars('$SW/bin/python') if ismacos: - python += 2 + python += '2' if len(args) == 1: args = shlex.split(args[0]) args = [python] + list(args)