# HG changeset patch # User trinity_ctat # Date 1506440615 14400 # Node ID 32b6a47c93126693a394c9874e8048bc8d1c5a7a # Parent 9e5c3f162ecadd26d575ebe29293e460de10138c Fix python syntax error. diff -r 9e5c3f162eca -r 32b6a47c9312 trinityToolWrapper.py --- a/trinityToolWrapper.py Tue Sep 26 11:34:17 2017 -0400 +++ b/trinityToolWrapper.py Tue Sep 26 11:43:35 2017 -0400 @@ -25,7 +25,7 @@ pipe1 = subprocess.Popen(["which", "Trinity"], stdout=subprocess.PIPE) except: t, v, tb = sys.exc_info() - sys.stderr.write("You must set the environmental variable TRINITY_HOME to the base installation directory of Trinity before running {:s}.".format(sys.argv[0]); + sys.stderr.write("You must set the environmental variable TRINITY_HOME to the base installation directory of Trinity before running {:s}.".format(sys.argv[0])) raise t, v, tb else: TrinityPath, err_info = pipe1.communicate()