Changeset 26744 for issm/trunk/src/m/dev/devpath.py
- Timestamp:
- 12/22/21 10:39:44 (3 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk ¶
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 25837-25866,25868-25993,25995-26330,26332-26733,26736-26739,26741
- Property svn:mergeinfo changed
-
issm/trunk/src ¶
- Property svn:mergeinfo changed
-
TabularUnified issm/trunk/src/m/dev/devpath.py ¶
r25836 r26744 2 2 import os 3 3 import sys 4 import warnings5 4 6 5 #Recover ISSM_DIR and USERNAME … … 16 15 dirs.remove('.svn') 17 16 for file in files: 18 if file.find( ".py") != -1:19 if file.find( ".pyc") == -1:17 if file.find('.py') != -1: 18 if file.find('.pyc') == -1: 20 19 if root not in sys.path: 21 20 sys.path.append(root) … … 36 35 sys.path.append(jpl_path) 37 36 else: 38 warnings.warn('cluster settings should be in, {}/usr/{}'.format(JPL_SVN, USERNAME))37 print('Warning: devpath.py: cluster settings should be in {}'.format(jpl_path)) 39 38 40 39 from runme import runme #first because plotmodel may fail … … 47 46 #c.InteractiveShellApp.exec_lines.append('print "Warning: disable autoreload in startup.py to improve performance." ') 48 47 49 print("\n ISSM development path correctly loaded")50 print("Current path is {}\n\n".format(ISSM_DIR))48 # print("\n ISSM development path correctly loaded") 49 # print("Current path is {}\n\n".format(ISSM_DIR))
Note:
See TracChangeset
for help on using the changeset viewer.