ajack 2004/04/06 10:30:09
Modified: python/gump gumpenv.py
Log:
Still trying to track down why 'timeout' is being attempted, when missing.
Revision Changes Path
1.6 +6 -5 gump/python/gump/gumpenv.py
Index: gumpenv.py
===================================================================
RCS file: /home/cvs/gump/python/gump/gumpenv.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gumpenv.py 6 Apr 2004 14:12:02 -0000 1.5
+++ gumpenv.py 6 Apr 2004 17:30:09 -0000 1.6
@@ -150,11 +150,12 @@
self.noForrest=1
self.addWarning('"forrest" command not found, no xdoc output')
- if not self.noTimeout and not self.checkExecutable('timeout','60 env',0):
- self.noTimeout=1
- self.addWarning('"timeout" command not found, no in-line command time
outs')
- else:
- setting.timeoutCommand=1
+ if not self.noTimeout:
+ if not self.checkExecutable('timeout','60 env',0):
+ self.noTimeout=1
+ self.addWarning('"timeout" command not found, no in-line command
time outs')
+ else:
+ setting.timeoutCommand=1
if not self.noRuper and \
not self.checkExecutable('ruper','-version',0,0,'check_ruper'):
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]