##// END OF EJS Templates
procutil: use rapply(tonativestr, ...) to preserve lists when they come in...
Augie Fackler -
r46602:fdd54a87 stable
parent child Browse files
Show More
@@ -640,7 +640,7 b' if pycompat.iswindows:'
640 # we can't use close_fds *and* redirect stdin. I'm not sure that we
640 # we can't use close_fds *and* redirect stdin. I'm not sure that we
641 # need to because the detached process has no console connection.
641 # need to because the detached process has no console connection.
642 p = subprocess.Popen(
642 p = subprocess.Popen(
643 tonativestr(script),
643 pycompat.rapply(tonativestr, script),
644 shell=shell,
644 shell=shell,
645 env=tonativeenv(env),
645 env=tonativeenv(env),
646 close_fds=True,
646 close_fds=True,
General Comments 0
You need to be logged in to leave comments. Login now