Commit 46005662 authored by Guido van Rossum's avatar Guido van Rossum

os.exec -> os.execv

parent 3303315f
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment