summaryrefslogtreecommitdiffstats
path: root/Demo/stdwin
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-01-12 14:05:27 (GMT)
committerGuido van Rossum <guido@python.org>1994-01-12 14:05:27 (GMT)
commit46005662854c351e2e85bd5de2c89096d0e582cd (patch)
tree466e13f67437f739a354c2bc025d99c6de7e6a6e /Demo/stdwin
parent3303315ff3ff0c9e008e3310ca96936817f25f28 (diff)
downloadcpython-46005662854c351e2e85bd5de2c89096d0e582cd.zip
cpython-46005662854c351e2e85bd5de2c89096d0e582cd.tar.gz
cpython-46005662854c351e2e85bd5de2c89096d0e582cd.tar.bz2
os.exec -> os.execv
Diffstat (limited to 'Demo/stdwin')
-rwxr-xr-xDemo/stdwin/jukebox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/stdwin/jukebox.py b/Demo/stdwin/jukebox.py
index bc43cb5..377078c 100755
--- a/Demo/stdwin/jukebox.py
+++ b/Demo/stdwin/jukebox.py
@@ -400,7 +400,7 @@ def sfplay(filename, args):
pid = os.fork()
if pid == 0:
# Child
- os.exec(SFPLAY, args)
+ os.execv(SFPLAY, args)
# NOTREACHED
else:
# Parent