From f13efaa405473f4cd3aeda7d36d5d2632e88675d Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Wed, 28 Feb 2018 00:00:10 +0700 Subject: [PATCH] Fix markdown 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 48bf7dbc..68dde0bb 100644 --- a/mythril/analysis/report.py +++ b/mythril/analysis/report.py @@ -100,7 +100,7 @@ class Report: text += "### Description\n" + issue.description + "\n" if issue.filename and issue.lineno: - text += "\nIn *%s:*\n%d" % (issue.filename, issue.lineno) + text += "\nIn *%s:*%d\n" % (issue.filename, issue.lineno) if issue.code: text += "\n```\n" + issue.code + "\n```\n"