From d679b1684e27cd75f5b086cbb5b357e712c665a4 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Sun, 25 Feb 2018 12:27:33 +0300 Subject: [PATCH] Markdown output formatting --- mythril/analysis/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/analysis/report.py b/mythril/analysis/report.py index 98ce6c96..c7e6df23 100644 --- a/mythril/analysis/report.py +++ b/mythril/analysis/report.py @@ -93,7 +93,7 @@ class Report: text += "### Description\n" + issue.description + "\n" if issue.filename and issue.code: - text += "*In " + issue.filename + ":*\n" + text += "\nIn *" + issue.filename + ":*\n" text += "\n```\n" + issue.code + "\n```\n" return text