Index: /issm/trunk-jpl/src/m/classes/organizer.py
===================================================================
--- /issm/trunk-jpl/src/m/classes/organizer.py	(revision 26389)
+++ /issm/trunk-jpl/src/m/classes/organizer.py	(revision 26390)
@@ -9,5 +9,5 @@
 try:
     #py3 import
-    from dbm.ndbm import whichdb
+    import dbm
 except ImportError:
     #py2 import
@@ -110,8 +110,8 @@
 
         #figure out if the model is there, otherwise, we have to use the default path supplied by user.
-        if whichdb(path1):
+        if dbm.whichdb(path1):
             md = loadmodel(path1)
             return md
-        elif whichdb(path2):
+        elif dbm.whichdb(path2):
             md = loadmodel(path2)
             return md
@@ -159,5 +159,5 @@
 
             #last check: is this step locked?
-				s = self.steps[self._currentstep - 1]['string']
+            s = self.steps[self._currentstep - 1]['string']
             if len(s) > 7:
                 if s[-6:] == 'Locked':
