Skip to content

Commit b6ec187

Browse files
authored
Merge pull request #42620 from DhruveshParmar/use_python3
Use Python 3
2 parents c1b97a5 + cd1a98c commit b6ec187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ function with_pushd() {
340340
}
341341

342342
function quoted_print() {
343-
python -c 'import pipes; import sys; print(" ".join(pipes.quote(arg) for arg in sys.argv[1:]))' "$@"
343+
python3 -c 'import pipes; import sys; print(" ".join(pipes.quote(arg) for arg in sys.argv[1:]))' "$@"
344344
}
345345

346346
function toupper() {

0 commit comments

Comments
 (0)