--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/sshNoHostKeyVerification.py Sun Feb 23 12:42:47 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/sshNoHostKeyVerification.py Mon Feb 24 15:11:18 2025 +0100 @@ -28,7 +28,7 @@ """ return { "Call": [ - (checkSshNoHostKeyVerification, ("S507",)), + (checkSshNoHostKeyVerification, ("S-507",)), ], } @@ -66,7 +66,7 @@ reportError( context.node.lineno - 1, context.node.col_offset, - "S507", + "S-507", "H", "M", )