--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/tarfileUnsafeMembers.py Sun Feb 23 12:42:47 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/tarfileUnsafeMembers.py Mon Feb 24 15:11:18 2025 +0100 @@ -26,7 +26,7 @@ """ return { "Call": [ - (checkTarfileUnsafeMembers, ("S202",)), + (checkTarfileUnsafeMembers, ("S-202",)), ], } @@ -95,7 +95,7 @@ reportError( context.node.lineno - 1, context.node.col_offset, - "S202.1", + "S-202.1", "L", "L", str(members), @@ -104,12 +104,12 @@ reportError( context.node.lineno - 1, context.node.col_offset, - "S202.2", + "S-202.2", "M", "M", str(members), ) else: reportError( - context.node.lineno - 1, context.node.col_offset, "S202.3", "H", "H" + context.node.lineno - 1, context.node.col_offset, "S-202.3", "H", "H" )