comparison micropita_prepare.py @ 7:79da68490e43

Uploaded
author george-weingart
date Tue, 06 May 2014 17:25:47 -0400
parents 9d3798187b19
children da693b03b582
comparison
equal deleted inserted replaced
6:9d3798187b19 7:79da68490e43
171 results.outputname 171 results.outputname
172 print os_command 172 print os_command
173 argsx = shlex.split(os_command) 173 argsx = shlex.split(os_command)
174 print argsx 174 print argsx
175 try: 175 try:
176 ######os.system(os_command) 176 os.system(os_command)
177 subprocess.check_call(argsx , shell=False) 177 ######subprocess.check_call(argsx , shell=False)
178 except: 178 except:
179 print "The call to micropita failed=============" 179 print "The call to micropita failed============="
180 sys.exit(0) 180 sys.exit(0)
181 181
182 182