From a2f98638cf09220917874d220f1446ed70722b1f Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Mon, 12 Dec 2016 16:02:12 +0100 Subject: [PATCH] Fix the crash handler string so we get no errors from gettext Contributes to CURA-3123 --- cura/CrashHandler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py index 366bc01b15..94b1971bdf 100644 --- a/cura/CrashHandler.py +++ b/cura/CrashHandler.py @@ -69,8 +69,7 @@ def show(exception_type, value, tb): layout.addWidget(label) #label.setScaledContents(True) - label.setText(catalog.i18nc("@label", """ -

A fatal exception has occurred that we could not recover from!

+ label.setText(catalog.i18nc("@label", """

A fatal exception has occurred that we could not recover from!

We hope this picture of a kitten helps you recover from the shock.

Please use the information below to post a bug report at http://github.com/Ultimaker/Cura/issues

"""))