Changeset 25099


Ignore:
Timestamp:
06/22/20 11:31:32 (5 years ago)
Author:
jdquinn
Message:

BUG: Need to cast to int

File:
1 edited

Legend:

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

    r25098 r25099  
    3131    if errs != '':
    3232        raise Exception("gmshplanet: call to gmsh failed: {}".format(errs))
    33     gmshmajorversion = outs
     33    gmshmajorversion = int(outs)
    3434    if gmshmajorversion not in [3, 4]:
    3535        raise RuntimeError("gmshplanet: Gmsh major version {} not supported!".format( gmshmajorversion))
Note: See TracChangeset for help on using the changeset viewer.