diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-17 16:08:02 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-17 16:08:02 -0400 |
| commit | 72b8c367db613c3f44bce1174a8a5e8226bd2863 (patch) | |
| tree | 0daf0758b275a2eb4d794c202dc8d2c0e17749eb /stub.py | |
| parent | ef17511c66a9f59bb9c74cb6f94f71e044c4fef1 (diff) | |
| parent | d7fddb0c946e19c571325a88ae5516bcbd0df128 (diff) | |
Merge remote-tracking branch 'origin/master' into lexelby-auto-fill-run
Diffstat (limited to 'stub.py')
| -rw-r--r-- | stub.py | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -3,6 +3,7 @@ import sys import os import subprocess +import traceback # ink/stitch # @@ -30,8 +31,21 @@ args[0] = binary_path # os.execve works here for Linux, but only this seems to get the # extension output to Inkscape on Windows -extension = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) -stdout, stderr = extension.communicate() +try: + extension = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + stdout, stderr = extension.communicate() +except: + print >> sys.stderr, "Unexpected error launching Ink/Stitch." + print >> sys.stderr, "If you're having trouble, please file an issue here, including the text below: https://github.com/inkstitch/inkstitch/issues\n" + print >> sys.stderr, "Tried to launch:", binary_path + print >> sys.stderr, "Arguments:", args + print >> sys.stderr, "Debugging information:\n" + print >> sys.stderr, traceback.format_exc() + sys.exit(1) + +if sys.platform == "win32": + import msvcrt + msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) stdout = stdout.strip() if stdout: |
