Ignore:
Timestamp:
02/12/19 06:10:51 (6 years ago)
Author:
bdef
Message:

CHG: shifting to py3 version of python interface (py2 compatible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/io/loadmodel.py

    r21235 r23716  
    11from loadvars import loadvars
    2 from whichdb import whichdb
     2from dbm.ndbm import whichdb
    33from netCDF4 import Dataset
    44
     
    2727        #recover model on file and name it md
    2828        struc=loadvars(path)
    29         name=[key for key in struc.iterkeys()]
     29        name=[key for key in list(struc.keys())]
    3030        if len(name)>1:
    3131                raise IOError("loadmodel error message: file '%s' contains several variables. Only one model should be present." % path)
Note: See TracChangeset for help on using the changeset viewer.