comparison trinityToolWrapper.py @ 11:2e0e45063fad draft

Trying to fix a syntax error. Seems like the wrong python is being used.
author trinity_ctat
date Tue, 26 Sep 2017 22:56:18 -0400
parents a8fa525a2f30
children c76d9b3e67b2
comparison
equal deleted inserted replaced
10:a8fa525a2f30 11:2e0e45063fad
8 messages only if the program exit status was not 0 8 messages only if the program exit status was not 0
9 Example: ./stderr_wrapper.py myprog arg1 -f arg2 9 Example: ./stderr_wrapper.py myprog arg1 -f arg2
10 """ 10 """
11 11
12 import sys, subprocess, os 12 import sys, subprocess, os
13 print sys.version
13 14
14 assert sys.version_info[:2] >= ( 2, 4 ) 15 assert sys.version_info[:2] >= ( 2, 4 )
15 16
16 TRINITY_BASE_DIR = "" 17 TRINITY_BASE_DIR = ""
17 if os.environ.has_key('TRINITY_HOME'): 18 if os.environ.has_key('TRINITY_HOME'):