Changeset 26390


Ignore:
Timestamp:
08/11/21 17:34:11 (4 years ago)
Author:
schlegel
Message:

CHG: fix indent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/organizer.py

    r26373 r26390  
    99try:
    1010    #py3 import
    11     from dbm.ndbm import whichdb
     11    import dbm
    1212except ImportError:
    1313    #py2 import
     
    110110
    111111        #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):
    113113            md = loadmodel(path1)
    114114            return md
    115         elif whichdb(path2):
     115        elif dbm.whichdb(path2):
    116116            md = loadmodel(path2)
    117117            return md
     
    159159
    160160            #last check: is this step locked?
    161                                 s = self.steps[self._currentstep - 1]['string']
     161            s = self.steps[self._currentstep - 1]['string']
    162162            if len(s) > 7:
    163163                if s[-6:] == 'Locked':
Note: See TracChangeset for help on using the changeset viewer.