Changeset 12707 for issm/trunk/startup.py
- Timestamp:
- 07/24/12 10:36:46 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
-
issm/trunk/startup.py
r12332 r12707 22 22 #ISSM path. Go through src/py and load everything we find that looks like a python file 23 23 for root,dirs,files in os.walk(ISSM_DIR+ '/src/py'): 24 if '.svn' in dirs: 25 dirs.remove('.svn') 24 26 for file in files: 25 27 if file.find(".py") != -1: … … 31 33 32 34 for root,dirs,files in os.walk(ISSM_DIR+ '/src/m'): 35 if '.svn' in dirs: 36 dirs.remove('.svn') 33 37 for file in files: 34 38 if file.find(".py") != -1: … … 77 81 from stokesoptions import * 78 82 from generic import * 79 from none import *80 from none import *81 83 from hydrology import * 82 84 from miscellaneous import *
Note:
See TracChangeset
for help on using the changeset viewer.