summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2022-05-24 19:33:23 +0200
committerGitHub <noreply@github.com>2022-05-24 19:33:23 +0200
commitca07b1b267b0f401b947c984e67ee15de9e16c8f (patch)
treefd8319ff9496adae5d3acd65cac8f479d35e60ed
parent9f709a7d833607a789164928a9de5109c7faaaf4 (diff)
traceback errors: save svg (#1659)
-rw-r--r--inkstitch.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/inkstitch.py b/inkstitch.py
index 65331cec..612def21 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)