Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4600566

Browse files
committed
os.exec -> os.execv
1 parent 3303315 commit 4600566

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Demo/stdwin/jukebox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def sfplay(filename, args):
400400
pid = os.fork()
401401
if pid == 0:
402402
# Child
403-
os.exec(SFPLAY, args)
403+
os.execv(SFPLAY, args)
404404
# NOTREACHED
405405
else:
406406
# Parent

0 commit comments

Comments
 (0)