Changeset 27174 for issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py
- Timestamp:
- 08/02/22 02:44:42 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py
r27119 r27174 26 26 subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) 27 27 outs, errs = subproc.communicate() 28 if ((not isinstance(errs, bytes)) & (errs != '')) or (isinstance(errs, bytes) & (errs.decode() != '')): 28 try: 29 strErrs = errs.decode() 30 except AttributeError: #this is not a byte variable, let's assume string 31 strErrs = errs 32 if strErrs != '': 29 33 raise Exception('gmshplanet: call to gmsh failed: {}'.format(errs)) 30 34 gmshmajorversion = int(outs)
Note:
See TracChangeset
for help on using the changeset viewer.