Changeset 26390
- Timestamp:
- 08/11/21 17:34:11 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/organizer.py
r26373 r26390 9 9 try: 10 10 #py3 import 11 from dbm.ndbm import whichdb11 import dbm 12 12 except ImportError: 13 13 #py2 import … … 110 110 111 111 #figure out if the model is there, otherwise, we have to use the default path supplied by user. 112 if whichdb(path1):112 if dbm.whichdb(path1): 113 113 md = loadmodel(path1) 114 114 return md 115 elif whichdb(path2):115 elif dbm.whichdb(path2): 116 116 md = loadmodel(path2) 117 117 return md … … 159 159 160 160 #last check: is this step locked? 161 161 s = self.steps[self._currentstep - 1]['string'] 162 162 if len(s) > 7: 163 163 if s[-6:] == 'Locked':
Note:
See TracChangeset
for help on using the changeset viewer.