From ca07b1b267b0f401b947c984e67ee15de9e16c8f Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Tue, 24 May 2022 19:33:23 +0200 Subject: [PATCH] traceback errors: save svg (#1659) --- inkstitch.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/inkstitch.py b/inkstitch.py index 65331cec7..612def214 100644 --- a/inkstitch.py +++ b/inkstitch.py @@ -82,10 +82,13 @@ else: errormsg(shapely_errors.getvalue()) if exception: - errormsg(_("Ink/Stitch experienced an unexpected error.") + "\n") - errormsg(_("If you'd like to help, please file an issue at " - "https://github.com/inkstitch/inkstitch/issues " - "and include the entire error description below:") + "\n") + errormsg(_("Ink/Stitch experienced an unexpected error. This means it is a bug in Ink/Stitch.") + "\n") + errormsg(_("If you'd like to help please\n" + "- copy the entire error message below\n" + "- save your SVG file and\n" + "- create a new issue at https://github.com/inkstitch/inkstitch/issues") + "\n") + errormsg(_("Include the error description and also (if possible) " + "the svg file.") + "\n") errormsg(version.get_inkstitch_version() + "\n") errormsg(exception) sys.exit(1)