subprocess call is not waiting.
Chris Rebert
clp2 at rebertia.com
Fri Sep 14 01:27:23 EDT 2012
More information about the Python-list mailing list
Fri Sep 14 01:27:23 EDT 2012
- Previous message (by thread): subprocess call is not waiting.
- Next message (by thread): subprocess call is not waiting.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Previous message (by thread): subprocess call is not waiting.
- Next message (by thread): subprocess call is not waiting.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list