Franck Pommereau

added debug for launch

1 import subprocess, sys, inspect, os.path 1 import subprocess, sys, inspect, os.path
2 2
3 def launch (script, *args) : 3 def launch (script, *args) :
4 + print " ".join([sys.executable, find(script)] + list(args))
4 return subprocess.Popen([sys.executable, find(script)] + list(args)) 5 return subprocess.Popen([sys.executable, find(script)] + list(args))
5 6
6 def find (script) : 7 def find (script) :
......