changeset 3:32b6a47c9312 draft

Fix python syntax error.
author trinity_ctat
date Tue, 26 Sep 2017 11:43:35 -0400
parents 9e5c3f162eca
children cb71c6b0bf66
files trinityToolWrapper.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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()