Changeset 1371 for trunk/python
- Timestamp:
- 07/02/07 15:23:04 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r1365 r1371 22 22 if os.path.exists(os.environ["ASAPDATA"]): 23 23 asapdata = os.environ["ASAPDATA"] 24 if not os.environ.has_key("AIPSPATH"): 24 # use AIPSPATH if defined and "data" dir present 25 if not os.environ.has_key("AIPSPATH") or \ 26 not os.path.exists(os.environ["AIPSPATH"].split()[0]+"/data"): 25 27 os.environ["AIPSPATH"] = "%s %s somwhere" % ( asapdata, plf) 26 28 # set up user space … … 359 361 360 362 __date__ = '$Date$'.split()[1] 361 __version__ = ' 2.2.0'363 __version__ = 'trunk' 362 364 363 365 def is_ipython():
Note:
See TracChangeset
for help on using the changeset viewer.