We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7391391 commit 7d2041aCopy full SHA for 7d2041a
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