--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/awsHardcodedPassword.py Sun Feb 23 12:42:47 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/awsHardcodedPassword.py Mon Feb 24 15:11:18 2025 +0100 @@ -33,7 +33,7 @@ """ return { "Str": [ - (checkHardcodedAwsKey, ("S801", "S802")), + (checkHardcodedAwsKey, ("S-801", "S-802")), ], } @@ -90,7 +90,7 @@ reportError( context.node.lineno - 1, context.node.col_offset, - "S801", + "S-801", "L", "M", node.value, @@ -102,7 +102,7 @@ reportError( context.node.lineno - 1, context.node.col_offset, - "S802", + "S-802", "M", "M", node.value,