From 5a1ba37a9d71557f33feeeab50179c04099411b4 Mon Sep 17 00:00:00 2001 From: MedNait <33644814+MedNait@users.noreply.github.com> Date: Mon, 9 Apr 2018 00:54:22 +0200 Subject: [PATCH] Update extract_scene.py Use the "start" command on Windows to open files instead of "open" on Mac OS or "xdg-open" on Linux. This helps solving "The system cannot find the path specified" issue #173. --- extract_scene.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extract_scene.py b/extract_scene.py index f35d3564..be869e27 100644 --- a/extract_scene.py +++ b/extract_scene.py @@ -145,6 +145,8 @@ def handle_scene(scene, **config): commands = ["open"] if (platform.system() == "Linux"): commands = ["xdg-open"] + elif (platform.system() == "Windows"): + commands = ["start"] if config["show_file_in_finder"]: commands.append("-R")