diff --git a/direct/src/showbase/ppython b/direct/src/showbase/ppython index 569f6ba9db..6fedfc630a 100755 --- a/direct/src/showbase/ppython +++ b/direct/src/showbase/ppython @@ -54,8 +54,8 @@ export HOME if [ x"$1" = x"-d" ]; then shift 1 - exec python_d $* + exec python_d ${1+"$@"} else - exec python $* + exec python ${1+"$@"} fi