From e424befb09d344059fba8a4b4a3df8d93b8e6467 Mon Sep 17 00:00:00 2001 From: FEA-eng <59876896+FEA-eng@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:39:25 +0200 Subject: [PATCH] FEM: Update ccxtools.py --- src/Mod/Fem/femtools/ccxtools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/femtools/ccxtools.py b/src/Mod/Fem/femtools/ccxtools.py index dae1621aff..2b224f4054 100644 --- a/src/Mod/Fem/femtools/ccxtools.py +++ b/src/Mod/Fem/femtools/ccxtools.py @@ -595,14 +595,14 @@ class FemToolsCcx(QtCore.QRunnable, QtCore.QObject): QtGui.QMessageBox.critical(None, "No CalculiX binary ccx", error_message) return progress_bar = FreeCAD.Base.ProgressIndicator() - progress_bar.start("Everything seams fine. CalculiX ccx will be executed ...", 0) + progress_bar.start("Everything seems fine. CalculiX ccx will be executed ...", 0) ret_code = self.start_ccx() self.finished.emit(ret_code) progress_bar.stop() if ret_code or self.ccx_stderr: if ret_code == 201 and self.solver.AnalysisType == "check": FreeCAD.Console.PrintMessage( - "It seams we run into NOANALYSIS problem, " + "It seems we run into NOANALYSIS problem, " "thus workaround for wrong exit code for *NOANALYSIS check " "and set ret_code to 0.\n" )