Skip to content
Snippets Groups Projects
Commit 67553040 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

ParseString should NOT add ; at the end!

parent 2a358684
No related branches found
No related tags found
No related merge requests found
......@@ -272,12 +272,11 @@ class client :
def sendCommand(self, command) :
if not self.socket :
return
self._send(self._GMSH_PARSE_STRING, command + ' ;')
self._send(self._GMSH_PARSE_STRING, command)
def mergeFile(self, filename) :
if not self.socket :
return
#self._send(self._GMSH_PARSE_STRING, 'Merge "' + filename + '";')
self._send(self._GMSH_MERGE_FILE, filename)
def sendInfo(self, msg) :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment