]> SALOME platform Git repositories - tools/solverlab.git/commitdiff
Salome HOME
Corrected missing parenthesis in print (python3)
authormichael <michael@localhost.localdomain>
Sun, 21 Mar 2021 13:44:09 +0000 (14:44 +0100)
committermichael <michael@localhost.localdomain>
Sun, 21 Mar 2021 13:44:09 +0000 (14:44 +0100)
CDMATH/tests/validation/scripts/WaveSystemUpwind/WaveSystemUpwind.py

index 13028128f5d75f83498f754689b5b14704f6cfd7..57330c22294f99ea803773327faf2aed5d7cdc78 100755 (executable)
@@ -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: