From 2d1cd6a86b2bbcda2a35d35574b02c834fb66171 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Thu, 19 Dec 2019 13:32:56 +0800 Subject: [PATCH] fix: html template path --- docs/CHANGELOG.md | 2 +- httprunner/report/html/gen_report.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ee0c8553..9fde7f15 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 2.4.5 (2019-12-18) +## 2.4.5 (2019-12-19) **Fixed** diff --git a/httprunner/report/html/gen_report.py b/httprunner/report/html/gen_report.py index a8733580..dc23d5af 100644 --- a/httprunner/report/html/gen_report.py +++ b/httprunner/report/html/gen_report.py @@ -20,8 +20,6 @@ def gen_html_report(summary, report_template=None, report_dir=None, report_file= if not report_template: report_template = os.path.join( os.path.abspath(os.path.dirname(__file__)), - "report", - "html", "template.html" ) logger.log_debug("No html report template specified, use default.")