From 33401d3e70ac12914506312e4b30353e355594dc Mon Sep 17 00:00:00 2001 From: Vincent Vatelot Date: Mon, 16 May 2022 13:58:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(mesg):=20Fix=20html=20report?= =?UTF-8?q?=20file=20success=20message=20(#137)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecoindex_cli/cli/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ecoindex_cli/cli/app.py b/ecoindex_cli/cli/app.py index a97f682..dad0861 100644 --- a/ecoindex_cli/cli/app.py +++ b/ecoindex_cli/cli/app.py @@ -188,7 +188,8 @@ def analyze( date=time_now, ) secho( - f"🦄️ Amazing! A report has been generated to {output_folder}/index.html, fg=colors.GREEN" + f"🦄️ Amazing! A report has been generated to {output_folder}/index.html", + fg=colors.GREEN, ) open_webbrowser(f"file://{output_folder}/index.html")