fix output routing for windows

pull/83/head
Lex Neva 2018-02-21 20:55:39 -05:00
rodzic 5a471bdd02
commit 1a5d3885be
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -28,4 +28,6 @@ binary_path = os.path.join("inkstitch", "bin", binary_name)
args = sys.argv[:]
args[0] = binary_path
subprocess.call(args)
# os.execve works here for Linux, but only this seems to get the
# extension output to Inkscape on Windows
print subprocess.check_output(args)