# HG changeset patch # User Nicolas Saunier # Date 1523652482 14400 # Node ID 2cd1ce24502417aa3c0c90ff2ec6e0146136f1fe # Parent 9b601e9e973571e589f868c0f938711a75d15ba2 update to python 3 diff -r 9b601e9e9735 -r 2cd1ce245024 python/traffic_engineering.py --- a/python/traffic_engineering.py Fri Mar 09 17:02:37 2018 -0500 +++ b/python/traffic_engineering.py Fri Apr 13 16:48:02 2018 -0400 @@ -304,7 +304,7 @@ if deceleration > 0: return [perceptionReactionTime+float(initialSpeed)/(2*deceleration), float(intersectionLength+vehicleAverageLength)/initialSpeed] else: - print 'Issue deceleration should be strictly positive' + print('Issue deceleration should be strictly positive') return None def uniformDelay(cycleLength, effectiveGreen, saturationDegree):