From 3cdbbe6dbc973cd286ad52a5e0c8e7cd26601c42 Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Tue, 17 Nov 2020 22:12:05 +0100 Subject: [PATCH] FEM: typo in coding conventions --- src/Mod/Fem/coding_conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/coding_conventions.md b/src/Mod/Fem/coding_conventions.md index 4753f28c48..a81e2c1426 100644 --- a/src/Mod/Fem/coding_conventions.md +++ b/src/Mod/Fem/coding_conventions.md @@ -37,7 +37,7 @@ These coding rules apply to FEM module code only. Other modules or the base syst ### Exceptione - Do not use bare 'except'. - Be more specific. If not possible use: -- Either use 'except Exception' or if really everything should be catched 'except BaseException' +- Either use 'except Exception' or if really everything should be caught 'except BaseException' - https://stackoverflow.com/a/18982772 - https://github.com/PyCQA/pycodestyle/issues/703