Keep environment variables, otherwise the child subprocess subprocess.Popen(cmd, env=env or None) will not have the same environment as the parent.
subprocess.Popen(cmd, env=env or None)
:thumbsup: for me, thanks!
:thumbsup:
Pull-Request has been merged by pingou
Keep environment variables, otherwise the child subprocess
subprocess.Popen(cmd, env=env or None)will not have the same environment as the parent.