Skip to content

Commit 5c3736a

Browse files
cclausscodebytere
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 40773c0 commit 5c3736a

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
@@ -608,7 +610,7 @@ def print_verbose(x):
608610
if not options.verbose:
609611
return
610612
if type(x) is str:
611-
print x
613+
print(x)
612614
else:
613615
pprint.pprint(x, indent=2)
614616

0 commit comments

Comments
 (0)