From d2e43c3b61eccf2d8ee91143b7e7cd7e51cbd93a Mon Sep 17 00:00:00 2001 From: Alexandre Lewkowicz Date: Mon, 13 Jan 2014 13:32:04 +0000 Subject: [PATCH] python: use new print syntax. * wrap/python/tests/alarm.py: Here. --- wrap/python/tests/alarm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrap/python/tests/alarm.py b/wrap/python/tests/alarm.py index aef46d426..49e018c14 100755 --- a/wrap/python/tests/alarm.py +++ b/wrap/python/tests/alarm.py @@ -59,8 +59,8 @@ if child != 0: exit(1) # This is expected to take WAY more that 2s. -print "Before" +print("Before") spot.ltl_to_tgba_fm(f, d, True) -print "After" +print("After") exit(1)