From: michael Date: Sun, 21 Mar 2021 13:44:09 +0000 (+0100) Subject: Corrected missing parenthesis in print (python3) X-Git-Tag: V9_7_0~26 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fe8e3b2e54f9027c9305c3c6d147f26505c8dae7;p=tools%2Fsolverlab.git Corrected missing parenthesis in print (python3) --- diff --git a/CDMATH/tests/validation/scripts/WaveSystemUpwind/WaveSystemUpwind.py b/CDMATH/tests/validation/scripts/WaveSystemUpwind/WaveSystemUpwind.py index 1302812..57330c2 100755 --- a/CDMATH/tests/validation/scripts/WaveSystemUpwind/WaveSystemUpwind.py +++ b/CDMATH/tests/validation/scripts/WaveSystemUpwind/WaveSystemUpwind.py @@ -391,7 +391,7 @@ def WaveSystemVF(ntmax, tmax, cfl, my_mesh, output_freq, meshName, resolution,sc else: print("Ecart au stationnaire exact : error_p= ",delta_press/p0," error_||u||= ",delta_v.maxVector()[0]) print - print"-- Iter: " + str(it) + ", Time: " + str(time) + ", dt: " + str(dt) + print("-- Iter: " + str(it) + ", Time: " + str(time) + ", dt: " + str(dt)) if(with_source): print("Variation temporelle relative : pressure ", maxVector[0] ,", velocity x", maxVector[1]/rho0 ,", velocity y", maxVector[2]/rho0) else: