Skip to content

Commit 307803f

Browse files
tcarmelveilleuxandy31415
authored andcommitted
Fix GRPKEY cluster in PICSGenerator (project-chip#33963)
* Fix GRPKEY cluster in PICSGenerator - Group Key Management cluster was incorrectly mapped, leading to errors. This PR: - Fixes the mapping of GroupKeyManagement cluster Testing done: - Ran PICSGenerator against my product after changes, got no error where there previously was one. * Fix formatting, address review comment --------- Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent db6b762 commit 307803f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/PICS-generator/PICSGenerator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def GenerateDevicePicsXmlFiles(clusterName, clusterPicsCode, featurePicsList, at
5050
elif "On/Off" == clusterName:
5151
clusterName = clusterName.replace("/", "-")
5252

53-
elif "Group Key Management" == clusterName:
53+
elif "GroupKeyManagement" == clusterName:
5454
clusterName = "Group Communication"
5555

5656
elif "Wake On LAN" == clusterName or "Low Power" == clusterName:

0 commit comments

Comments
 (0)