summaryrefslogtreecommitdiff
path: root/status
diff options
context:
space:
mode:
authorNikita Kniazev <nok.raven@gmail.com>2018-12-13 18:58:33 +0000
committerPeter Dimov <pdimov@gmail.com>2018-12-27 02:23:48 +0200
commit1645f28cf1c2920993ddd0353f4834e08e4ec574 (patch)
treed38371a6b4a2eb6585deb08c0e0d449e38a0cc24 /status
parentd3095768ffe705da36a082fb70b38b355ae6f1e5 (diff)
downloadboost-1645f28cf1c2920993ddd0353f4834e08e4ec574.tar.gz
boost_check_library: Python 3 compatible prints
Diffstat (limited to 'status')
-rw-r--r--status/boost_check_library.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/status/boost_check_library.py b/status/boost_check_library.py
index e75563936a..856d5dbcba 100644
--- a/status/boost_check_library.py
+++ b/status/boost_check_library.py
@@ -163,11 +163,11 @@ class check_library():
self.library_key = self.library.split('/',1)[1]
if self.debug:
- print ">>> cwd: %s"%(os.getcwd())
- print ">>> actions: %s"%(self.actions)
- print ">>> boost_root: %s"%(self.boost_root)
- print ">>> library: %s"%(self.library)
- print ">>> jamfile: %s"%(self.jamfile)
+ print(">>> cwd: %s"%(os.getcwd()))
+ print(">>> actions: %s"%(self.actions))
+ print(">>> boost_root: %s"%(self.boost_root))
+ print(">>> library: %s"%(self.library))
+ print(">>> jamfile: %s"%(self.jamfile))
for action in self.actions:
action_m = "check_"+action.replace('-','_')