ajack 2003/09/29 20:52:24
Modified: python/gump launcher.py
Log:
Try to see error when launch fails, by fixing side issues that mask it
Revision Changes Path
1.9 +1 -2 jakarta-gump/python/gump/launcher.py
Index: launcher.py
===================================================================
RCS file: /home/cvs/jakarta-gump/python/gump/launcher.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- launcher.py 28 Sep 2003 15:05:43 -0000 1.8
+++ launcher.py 30 Sep 2003 03:52:24 -0000 1.9
@@ -288,7 +288,6 @@
log.error('Failed to create CWD. Details: ' + str(details))
raise
-
# The command line
execString=cmd.formatCommandLine()
@@ -353,7 +352,7 @@
result.status=CMD_STATUS_FAILED
finally:
- if os.path.exists(outputFile):
+ if outputFile and os.path.exists(outputFile):
result.output=outputFile
# Keep time information
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]