Changeset 2291
- Timestamp:
- Jan 25, 2006, 6:10:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
production/karratha_2005/project.py
r2290 r2291 2 2 """ 3 3 4 #Assume INUNDATIONHOME environment variable points to the parent directory of the source data 4 5 5 from os import sep 6 from os import sep, environ 6 7 from os.path import expanduser 7 8 import sys … … 15 16 16 17 if sys.platform == 'win32': 17 home = '..\..\..\..\..' #Sandpit's parent dir 18 home = environ["INUNDATIONHOME"] #Sandpit's parent dir 19 #home = '..\..\..\..\..' #Sandpit's parent dir 18 20 else: 19 21 home = expanduser('~')
Note: See TracChangeset
for help on using the changeset viewer.