Maybe I'm totally wrong but maybe the program is outputting to stderr
which you seem to be ignoring:

(stdoutOutput, stderrOutput) = subprocess.Popen(args,
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()

print "stdout", stdoutOutput
print "stderr", stderrOutput

On Thu, Nov 12, 2009 at 12:38 PM, Jonathan Vanasco
<[email protected]> wrote:
>
> i have no clue.  that looks like it should be right.
>
> maybe there's an os issue ?
>
> there's a version of subprocess that ships in paster
>
> /paste/util/subprocess24
>
> try importing that as subprocess ?
>
> a bunch of the paste scripts use that as a failover if the main dist
> of subprocesss isn't available.
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to