FEM: gmsh tools, fix file closing

This commit is contained in:
Bernd Hahnebach
2018-02-19 06:51:21 +01:00
parent dcc65070c1
commit d685646b1a

View File

@@ -563,7 +563,7 @@ class GmshTools():
geo.write("//\n")
geo.write("// to run Gmsh and keep file in Gmsh GUI (with log), run in bash:\n")
geo.write("// " + self.gmsh_bin + " " + self.temp_file_geo + "\n")
geo.close
geo.close()
def run_gmsh_with_geo(self):
comandlist = [self.gmsh_bin, '-', self.temp_file_geo]