summaryrefslogtreecommitdiff
path: root/lib/output.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output.py')
-rw-r--r--lib/output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/output.py b/lib/output.py
index 23f0cf1e..1f932a0b 100644
--- a/lib/output.py
+++ b/lib/output.py
@@ -120,10 +120,10 @@ def write_embroidery_file(file_path, stitch_plan, svg, settings={}):
num_color_changes = re.search("d+", str(e)).group()
msg = _("Couldn't save embrodiery file.")
msg += '\n\n'
- msg += _("There are {num_color_changes} in your design. This is way too many.").format(num_color_changes=num_color_changes)
+ msg += _("There are {num_color_changes} color changes in your design. This is way too many.").format(num_color_changes=num_color_changes)
msg += '\n'
msg += _("Please reduce color changes. Find more information on our website:")
msg += '\n\n'
- msg += _("http://inkstitch.org/docs/faq/#too-many-color-changes")
+ msg += _("https://inkstitch.org/docs/faq/#too-many-color-changes")
inkex.errormsg(msg)
sys.exit(1)