From 760b5b76fe8e6d5a48106b6796dc5871becac638 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Thu, 6 Jun 2019 14:57:38 +0200 Subject: [PATCH] FEM: ccxtools, fix a syntax error, I wonder why flake8 did not find it ... --- src/Mod/Fem/femtools/ccxtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femtools/ccxtools.py b/src/Mod/Fem/femtools/ccxtools.py index 7a2d429153..e87648c153 100644 --- a/src/Mod/Fem/femtools/ccxtools.py +++ b/src/Mod/Fem/femtools/ccxtools.py @@ -1024,7 +1024,7 @@ class FemToolsCcx(QtCore.QRunnable, QtCore.QObject): nonpositive_jacobian_elenodes = sorted(nonpositive_jacobian_elenodes) command_for_nonposjacnodes = ( 'nonpositive_jacobian_elenodes = ' - .fomat(nonpositive_jacobian_elenodes) + .format(nonpositive_jacobian_elenodes) ) command_to_highlight = ( "Gui.ActiveDocument.{}.HighlightedNodes = nonpositive_jacobian_elenodes"