From 896b036aeee4399cb646bd8e7263e26ca92a81ec Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Sat, 26 Feb 2022 10:59:37 +0000 Subject: [PATCH] [FEM] Bugfix Gmsh Version check to be... ...Python 3.6 compatible --- src/Mod/Fem/femmesh/gmshtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femmesh/gmshtools.py b/src/Mod/Fem/femmesh/gmshtools.py index fad41d007a..77c70b817f 100644 --- a/src/Mod/Fem/femmesh/gmshtools.py +++ b/src/Mod/Fem/femmesh/gmshtools.py @@ -412,7 +412,7 @@ class GmshTools(): shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, - text=True + universal_newlines=True ) except Exception as e: Console.PrintMessage(str(e) + "\n")