Changeset 12039


Ignore:
Timestamp:
04/17/12 19:50:16 (13 years ago)
Author:
Eric.Larour
Message:

Adjusting startup.py for new location of python scripts

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

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

    • Property svn:ignore
      •  

        old new  
         1__pycache__
        12Makefile.in
        23Makefile
  • issm/trunk-jpl/src/m/classes/clusters

    • Property svn:ignore
      •  

        old new  
         1__pycache__
        12Makefile.in
        23Makefile
  • issm/trunk-jpl/startup.py

    r12036 r12039  
    2828#ISSM path. Go through src/py and load everything we find  that looks like a python file
    2929for root,dirs,files in os.walk(ISSM_TIER+ '/src/py'):
     30        for file in files:
     31                if file.find(".py") != -1:
     32                        if file.find(".pyc") == -1:
     33                                #add to path
     34                                sys.path.append(root)
     35                                file=os.path.splitext(file)[0]
     36                                #__import__(file)
     37
     38for root,dirs,files in os.walk(ISSM_TIER+ '/src/m'):
    3039        for file in files:
    3140                if file.find(".py") != -1:
Note: See TracChangeset for help on using the changeset viewer.