We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96339f4 commit b5e92c8Copy full SHA for b5e92c8
sonar/applications.py
@@ -612,6 +612,5 @@ def old_to_new_json_one(old_json: dict[str, Any]) -> dict[str, Any]:
612
def old_to_new_json(old_json: dict[str, Any]) -> dict[str, Any]:
613
new_json = old_json.copy()
614
for k, v in new_json.items():
615
- log.info("Convert %s %s", k, v)
616
new_json[k] = old_to_new_json_one(v)
617
return util.dict_to_list(new_json, "key")
0 commit comments