Changeset 1038


Ignore:
Timestamp:
04/27/06 10:32:59 (18 years ago)
Author:
mar637
Message:

have to check if output dir is there

Location:
trunk/test
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/file-io.py

    r1037 r1038  
    11#!/usr/bin/env python
    22from asap import *
     3
     4import os
     5outdir = "./output"
     6if not os.path.exists(outdir):
     7    os.mkdir(outdir)
    38
    49rcParams['verbose'] = 0
  • trunk/test/parkes-pol.py

    r968 r1038  
    11#!/usr/bin/env python
    22from asap import *
     3
     4import os
     5outdir = "./output"
     6if not os.path.exists(outdir):
     7    os.mkdir(outdir)
    38
    49rcParams['verbose'] = 0
  • trunk/test/tid.py

    r950 r1038  
    11#!/usr/bin/env python
    22from asap import *
     3
     4import os
     5outdir = "./output"
     6if not os.path.exists(outdir):
     7    os.mkdir(outdir)
    38
    49rcParams['verbose'] = 0
Note: See TracChangeset for help on using the changeset viewer.