Ignore:
Timestamp:
08/02/22 02:44:42 (3 years ago)
Author:
bdef
Message:

BUG:some fixes and path discovery addition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py

    r27119 r27174  
    2626    subproc = subprocess.Popen(subproc_args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
    2727    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 != '':
    2933        raise Exception('gmshplanet: call to gmsh failed: {}'.format(errs))
    3034    gmshmajorversion = int(outs)
Note: See TracChangeset for help on using the changeset viewer.