We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7391391 + 7d2041a commit 11210f9Copy full SHA for 11210f9
1 file changed
schema/v5.0/support/CVE_4_to_5_converter/cve4to5up.py
@@ -1648,7 +1648,9 @@ def buildImpactOther(key_str, content):
1648
o_impact = {}
1649
o_impact["type"] = "unknown"
1650
if isinstance(content, dict):
1651
- o_impact["content"] = content.copy
+ o_impact["content"] = content.copy()
1652
+ elif isinstance(content, list):
1653
1654
else:
1655
# wrap value in object
1656
o_impact["content"] = {key_str:content}
0 commit comments