Skip to content

Commit

Permalink
FEM: ccx tools, add misisng new line in error output
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and wwmayer committed Mar 7, 2019
1 parent 6ebc242 commit e21c284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Fem/femtools/ccxtools.py
Expand Up @@ -714,7 +714,7 @@ def run(self):
FreeCAD.Console.PrintMessage("Writing CalculiX input file completed.\n")
ret_code = self.ccx_run()
if ret_code != 0:
error_message = "CalculiX finished with error {}".format(ret_code)
error_message = "CalculiX finished with error {}.\n".format(ret_code)
FreeCAD.Console.PrintError(error_message)
if FreeCAD.GuiUp:
QtGui.QMessageBox.critical(None, "Error", error_message)
Expand Down

0 comments on commit e21c284

Please sign in to comment.