Merge branch 'blender-v2.91-release'

This commit is contained in:
Campbell Barton
2020-10-28 19:43:58 +11:00
2 changed files with 7 additions and 17 deletions

View File

@@ -82,10 +82,10 @@ def write_sysinfo(filepath):
output.write("\t%r\n" % p)
output.write(title("Python (External Binary)"))
output.write("binary path: %s\n" % prepr(sys.executable))
output.write("binary path: %s\n" % prepr(bpy.app.binary_path_python))
try:
py_ver = prepr(subprocess.check_output([
sys.executable,
bpy.app.binary_path_python,
"--version",
]).strip())
except Exception as e: