subprocess call is not waiting.

Chris Rebert clp2 at rebertia.com
Fri Sep 14 01:27:23 EDT 2012


On Thu, Sep 13, 2012 at 8:17 AM,  <paulstaten at gmail.com> wrote:
> I have a subprocess.call
<snip>
> But it doesn't work as intended.
<snip>
> Should I just go back to os.system?

Did the os.system() version work?

As of recent Python versions, os.system() is itself implemented using
the `subprocess` module, so if it does work, then it assuredly can be
made to work using the `subprocess` module instead.

Cheers,
Chris



More information about the Python-list mailing list