From da1539fce999e7fb4a82a9ddd670792b572fc3ce Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 4 Oct 2024 23:43:08 +0200 Subject: [PATCH] Properly end line when image is done --- emblematic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emblematic/__main__.py b/emblematic/__main__.py index 76f3d6b..7188310 100644 --- a/emblematic/__main__.py +++ b/emblematic/__main__.py @@ -141,7 +141,7 @@ def basic(bg_file, icon_paths, icon_fill, output_dir, width, height, icon_shadow f"--export-height={height}", ]) - click.echo(output_png_path, nl=False) + click.echo(output_png_path) if __name__ == "__main__":