On Mon, Oct 13, 2008 at 05:07:16PM -0700, [EMAIL PROTECTED] wrote:
> I run a Java app with subprocess from Python script. This python
> script is called from another Python Wrapper.
>
>
> python = subprocess.Popen(["toolname.sh", "-args", arg1, arg2],
> stdout=su
Hello,
I run a Java app with subprocess from Python script. This python
script is called from another Python Wrapper.
python = subprocess.Popen(["toolname.sh", "-args", arg1, arg2],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
I can run it manually from the