Skip to content

Commit 21e59a6

Browse files
cclaussrvagg
cclauss
authored andcommitted
build: use print() function in configure.py
PR-URL: #24484 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent 2f0a5b6 commit 21e59a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import print_function
2+
13
import json
24
import sys
35
import errno
@@ -609,7 +611,7 @@ def print_verbose(x):
609611
if not options.verbose:
610612
return
611613
if type(x) is str:
612-
print x
614+
print(x)
613615
else:
614616
pprint.pprint(x, indent=2)
615617

0 commit comments

Comments
 (0)