Skip to content

Commit d26c38e

Browse files
authored
Merge pull request #2 from manjula-aw/manjula-aw-patch-3
Update pytm.py - remove html encoding markdown data, as pandoc do the…
2 parents 3fbc5f0 + a91847b commit d26c38e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytm/pytm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1090,8 +1090,8 @@ def report(self, template_path):
10901090
e, f"while trying to open the report template file ({template_path})."
10911091
)
10921092

1093-
threats = encode_threat_data(TM._threats)
1094-
findings = encode_threat_data(self.findings)
1093+
threats = TM._threats
1094+
findings = self.findings
10951095

10961096
elements = encode_element_threat_data(TM._elements)
10971097
assets = encode_element_threat_data(TM._assets)

0 commit comments

Comments
 (0)